1

我是我的 Ruby on Rails 应用程序的 Heroku 部署的新手,我遇到了一个非常奇怪的情况。我正在尝试使用 phony_rails gem 部署应用程序。这在我的本地(Windows)机器上的开发和生产(使用 Postgres 的生产)上都可以很好地部署,但在 Heroku 上部署时会失败。具体来说,这里是 Heroku 堆栈跟踪的开始。

2013-02-05T16:05:26+00:00 app[web.1]: /app/vendor/bundle/ruby/1.9.1/gems/phony_rails-0.1.12/lib/phony_rails.rb:74:in `block in phony_normalize': No attribute phone found on User (PhonyRails) (ArgumentError)
2013-02-05T16:05:26+00:00 app[web.1]:   from /app/vendor/bundle/ruby/1.9.1/gems/phony_rails-0.1.12/lib/phony_rails.rb:73:in `each'
2013-02-05T16:05:26+00:00 app[web.1]:   from /app/vendor/bundle/ruby/1.9.1/gems/phony_rails-0.1.12/lib/phony_rails.rb:73:in `phony_normalize'
2013-02-05T16:05:26+00:00 app[web.1]:   from /app/app/models/Users/user.rb:89:in `<class:User>'
2013-02-05T16:05:26+00:00 app[web.1]:   from /app/app/models/Users/user.rb:55:in `<top (required)>'

user.rb 的第 89 行有问题的代码是这样的

phony_normalize :phone, :default_country_code => 'US'

看了下 phony_rails 的源码后,发现如下(ArgumentError 在第 74 行)

# Use this method on the class level like:
#   phony_normalize :phone_number, :fax_number, :default_country_code => 'NL'
#
# It checks your model object for a a country_code attribute (eg. 'NL') to do the normalizing so make sure
# you've geocoded before calling this method!
def phony_normalize(*attributes)
  options = attributes.last.is_a?(Hash) ? attributes.pop : {}
  options.assert_valid_keys :country_code, :default_country_code, :as
  if options[:as].present?
    raise ArgumentError, ':as option can not be used on phony_normalize with multiple attribute names! (PhonyRails)' if attributes.size > 1
    raise ArgumentError, "'#{options[:as]}' is not an attribute on #{self.name}. You might want to use 'phony_normalized_method :#{attributes.first}' (PhonyRails)" if not self.attribute_method?(options[:as])
  end
  attributes.each do |attribute|
    raise ArgumentError, "No attribute #{attribute} found on #{self.name} (PhonyRails)" if not self.attribute_method?(attribute)
    # Add before validation that saves a normalized version of the phone number
    self.before_validation do
      set_phony_normalized_numbers(attributes, options)
    end
  end
end

这是来自 User 模型的 attr_accesible 调用

attr_accessible :email, :name, :password, :password_confirmation, :rights, :right_ids,
:address_one, :address_two, :city, :state, :zip, :phone, :institutions, :institution_ids

看起来我在 Heroku 上的 User 模型没有找到 :phone 属性,尽管它在 attr_accessible 方法和数据库中。有谁知道发生了什么?我在网上找不到任何关于 Heroku 和 phony_rails 的信息。

4

1 回答 1

1

所以看起来我真的不了解 Heroku 部署。问题是我在部署到 Heroku 后没有迁移我的数据库(我想我认为这会自动发生)。在我找到关于 https://gist.github.com/njvitto/362873>here 的信息后,一切都奏效了。

于 2013-02-05T16:53:25.250 回答