Skip to content

Instantly share code, notes, and snippets.

@bensonk
Created September 6, 2011 03:16
Show Gist options
  • Save bensonk/1196498 to your computer and use it in GitHub Desktop.
Save bensonk/1196498 to your computer and use it in GitHub Desktop.
Coordinate auto-splitting
class Search < MongoObject
def coords=(x)
if String === x
super(x.split(","))
else
super(x)
end
end
end
stuff.coords = "54, 234"
stuff.coords = [45, 23]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment