我创建了一个 Heroku 应用程序,它利用 gmaps4fails gem 来实现应用程序的一项功能。
当我尝试为数据库播种时,我得到
rake aborted!
undefined local variable or method 'acts_as_gmappable' for #<Class:0x00000004b5b928>
任何想法如何解决这一问题?
在本地测试时一切正常。
编辑:这是我的模型代码
class Hall < ActiveRecord::Base
has_many :hall_features
has_many :green_features, :through => :hall_features
has_many :settings, :through => :pinned_halls
belongs_to :operational_unit
acts_as_gmappable
...
移民:
class CreateHalls < ActiveRecord::Migration
def up
create_table 'halls' do |t|
t.string 'name'
t.text 'background'
t.text 'energy_info'
t.float 'latitude'
t.float 'longitude'
t.boolean 'gmaps'
t.timestamps
end
end
def down
drop_table 'halls' # deletes the whole table and all its data!
end
end
这是来自我的终端的错误:http: //i48.tinypic.com/zvoggg.png