Skip to content

Instantly share code, notes, and snippets.

@LegendSzymonP
Created July 9, 2012 22:31
Show Gist options
  • Save LegendSzymonP/3079460 to your computer and use it in GitHub Desktop.
Save LegendSzymonP/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