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 Object | |
def eigenclass | |
class << self | |
return self | |
end | |
end | |
end | |
class Person | |
def hello |
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
module MyApp | |
module Extensions | |
module Page | |
def self.included(base) | |
base.class_eval do | |
belongs_to :account | |
end | |
end |
NewerOlder