21st Wed
acts_as_bits-0.2
変更点
- (1) Rails2 の dirty column に対応
- (2) 一括設定機能を追加
ruby>>
class User < ActiveRecord::Base
acts_as_bits :flags, %w( admin create read update delete )
end
user = User.new
user.admin = true # (1)
user.changed? # => true
user.flags = true # (2)
user.flags # => "11111"
<<--
インストール
shell>>
% gem install maiha-acts_as_bits --source=http://gems.github.com
<<--
posted by
maiha on Wed 21 Jan 2009 at 19:56 with 0 comments