Skip to content

Instantly share code, notes, and snippets.

@kevinvaldek
Created January 24, 2010 15:51
Show Gist options
  • Save kevinvaldek/285267 to your computer and use it in GitHub Desktop.
Save kevinvaldek/285267 to your computer and use it in GitHub Desktop.
class Bike
include MongoMapper::Document
key :_type, String
key :brand, String
end
class TwoWheeler < Bike
key :has_suspension, Boolean
end
class ThreeWheeler < Bike
key :age_limit, Integer
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment