Skip to content

Instantly share code, notes, and snippets.

@szymon-przybyl
Created July 9, 2012 22:31
Show Gist options
  • Save szymon-przybyl/3079460 to your computer and use it in GitHub Desktop.
Save szymon-przybyl/3079460 to your computer and use it in GitHub Desktop.
inheritance
class Game
include Mongoid::Document
def self.my_method
puts "test"
end
end
class Deer < Game
my_method
end
undefined method `my_method' for Deer:Class
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment