Created
July 9, 2012 22:31
-
-
Save LegendSzymonP/3079460 to your computer and use it in GitHub Desktop.
inheritance
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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