Skip to content

Instantly share code, notes, and snippets.

@dhiemstra
Created December 5, 2011 19:13
Show Gist options
  • Save dhiemstra/1434840 to your computer and use it in GitHub Desktop.
Save dhiemstra/1434840 to your computer and use it in GitHub Desktop.
class Animal
class << self
attr_accessor :food
end
end
class Monkey < Animal
@food = 'apple'
end
class Puma < Animal
@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