2
所以我試圖讓cancan寶石與我的rails 3應用程序一起工作,並且遇到了問題。_mask and Rails
我試圖複製在他的screen cast中使用的Ryan Bates(創建者的寶石)的代碼,但我得到一個錯誤,說roles_mask不是一種方法。我認爲_mask方法在某些時候從Ruby/Rails中被移除了,現在我想知道什麼是替換。
下面是我的user.rb型號代碼:
named_scope :with_role, lambda { |role| {:conditions => "roles_mask & #{2**ROLES.index(role.to_s)} > 0 "} }
ROLES = %w[admin student principal admissions]
def roles=(roles)
self.roles_mask = (roles & ROLES).map { |r| 2**ROLES.index(r) }.sum
end
def roles
ROLES.reject { |r| ((roles_mask || 0) & 2**ROLES.index(r)).zero? }
end
def role?
roles.include? role.to_s
end
def role_symbols
roles.map(&:to_sym)
end
我用Rails 3和Ruby 1.9.2dev
謝謝
哇,應該只是看過的插曲,而不是走過場asciicasts的。非常感謝。 – 2010-03-20 00:25:40