Skip to content

Instantly share code, notes, and snippets.

@dhiemstra
Created December 5, 2011 19:43
Show Gist options
  • Save dhiemstra/1434978 to your computer and use it in GitHub Desktop.
Save dhiemstra/1434978 to your computer and use it in GitHub Desktop.
class Animal
class_attribute :food
end
class Monkey < Animal
self.food = 'apple'
end
class Puma < Animal
self.food = 'monkey'
end
Monkey.new.class.food
# => "apple"
Puma.new.class.food
# => "monkey"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment