ACL9和Rails 2.3.8 - NameError:未初始化的常量User :: Role

时间:2010-11-24 17:42:21

标签: ruby-on-rails acl9

我正在运行RVM(Ruby 1.8.7-head,Rails 2.3.8)并且运行了一个新应用程序的BASICS。我有Authlogic工作,使用最少的代码来完成这项工作。我正在尝试使用ACL9(我已经在不同的项目上工作,相同的RVM gemset)

class User < ActiveRecord::Base
    # authentication
  acts_as_authentic

  # authorization
  acts_as_authorization_subject

  def full_name
    "#{self.first_name} #{self.last_name}"
  end
end

当我尝试运行简单检查以确保ACL9正常工作时......

  

脚本/控制台

     

u = User.first

     

u.has_role?(:anyrole)

我收到此错误...

ruby-1.8.7-head > u.has_role?(:anyrole)
NameError: uninitialized constant User::Role
    from /Users/development/.rvm/gems/ruby-1.8.7-head@rails238/gems/activesupport-2.3.8/lib/active_support/dependencies.rb:105:in `const_missing'
    from /Users/development/.rvm/gems/ruby-1.8.7-head@rails238/gems/activerecord-2.3.8/lib/active_record/base.rb:1:in `compute_type'
    from /Users/development/.rvm/gems/ruby-1.8.7-head@rails238/gems/activesupport-2.3.8/lib/active_support/core_ext/kernel/reporting.rb:11:in `silence_warnings'
    from /Users/development/.rvm/gems/ruby-1.8.7-head@rails238/gems/activerecord-2.3.8/lib/active_record/base.rb:2230:in `compute_type'
    from /Users/development/.rvm/gems/ruby-1.8.7-head@rails238/gems/activerecord-2.3.8/lib/active_record/reflection.rb:156:in `send'
    from /Users/development/.rvm/gems/ruby-1.8.7-head@rails238/gems/activerecord-2.3.8/lib/active_record/reflection.rb:156:in `klass'
    from /Users/development/.rvm/gems/ruby-1.8.7-head@rails238/gems/activerecord-2.3.8/lib/active_record/reflection.rb:187:in `quoted_table_name'
    from /Users/development/.rvm/gems/ruby-1.8.7-head@rails238/gems/activerecord-2.3.8/lib/active_record/associations/has_and_belongs_to_many_association.rb:102:in `construct_sql'
    from /Users/development/.rvm/gems/ruby-1.8.7-head@rails238/gems/activerecord-2.3.8/lib/active_record/associations/association_collection.rb:21:in `initialize'
    from /Users/development/.rvm/gems/ruby-1.8.7-head@rails238/gems/activerecord-2.3.8/lib/active_record/associations/has_and_belongs_to_many_association.rb:5:in `initialize'
    from /Users/development/.rvm/gems/ruby-1.8.7-head@rails238/gems/activerecord-2.3.8/lib/active_record/associations.rb:1306:in `new'
    from /Users/development/.rvm/gems/ruby-1.8.7-head@rails238/gems/activerecord-2.3.8/lib/active_record/associations.rb:1306:in `role_objects'
    from /Users/development/.rvm/gems/ruby-1.8.7-head@rails238/gems/acl9-0.12.0/lib/acl9/model_extensions/for_subject.rb:39:in `has_role?'
    from (irb):2

我不确定为什么这适用于我拥有的所有其他应用,但不是这个 - 而且我不确定错误信息是什么意思...感谢任何帮助。

1 个答案:

答案 0 :(得分:2)

  class Role < ActiveRecord::Base
    acts_as_authorization_role
  end
相关问题