saasbook

attr_accessor_with_history.rb

Mar 13th, 2014
152
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Ruby 0.20 KB | None | 0 0
  1. class Foo
  2.   attr_accessor_with_history :bar
  3. end
  4. f = Foo.new     # => #<Foo:0x127e678>
  5. f.bar = 3       # => 3
  6. f.bar = :wowzo  # => :wowzo
  7. f.bar = 'boo!'  # => 'boo!'
  8. f.history(:bar) # => [3, :wowzo, 'boo!']
Add Comment
Please, Sign In to add comment