Skip to content

Instantly share code, notes, and snippets.

@jstultz
Created March 31, 2018 21:54
Show Gist options
  • Save jstultz/d53931124cb7dde44aa41f0636666348 to your computer and use it in GitHub Desktop.
Save jstultz/d53931124cb7dde44aa41f0636666348 to your computer and use it in GitHub Desktop.
irb(main):002:0> a.private
=> 0
irb(main):003:0> a.private = 0
=> 0
irb(main):004:0> a.changes
=> {}
irb(main):005:0> a.private = false
=> false
irb(main):006:0> a.changes
=> {"private"=>[0, 0]}
irb(main):007:0> a.private
=> 0
irb(main):008:0> a.private_changed?
=> true
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment