誰かがこのコードを説明してもらえますか?これはgithubで説明されているのと同じブログアプリですが、この部分の使用、特に名前空間の役割マスクの使用を理解できませんでした。
このアプリの管理者、モデレーター、作成者には3つの役割があります。CRUD機能に基づいて、コメントを編集したり、コメントを削除したりできます。
class User < ActiveRecord::Base
acts_as_authentic
has_many :articles
has_many :comments
named_scope :with_role, lambda { |role| {:conditions => "roles_mask & #{2**ROLES.index(role.to_s)} > 0"} }
ROLES = %w[admin moderator author]
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_symbols
roles.map(&:to_sym)
end
end