Skip to content

Instantly share code, notes, and snippets.

@dburger
Created June 10, 2009 18:25
Show Gist options
  • Save dburger/127402 to your computer and use it in GitHub Desktop.
Save dburger/127402 to your computer and use it in GitHub Desktop.
u = Unit.find(123)
u.position #=> 14
u.position = "14"
u.position_changed? #=> false
u = Unit.find(42)
u.position #=> 0
u.position = "0"
u.position_changed? #=> true
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment