0

我创建了一个 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

4

1 回答 1

0

呃 .. 仅将 gem 放在 Gemfile 中的 :development 下。将它包含在 :production 中解决了一切。

今晚我会哭着入睡。也有些幸福的泪水。

于 2012-12-03T09:10:00.870 回答