Skip to content

Instantly share code, notes, and snippets.

View jonsgreen's full-sized avatar

Jonathan jonsgreen

View GitHub Profile
class Object
def eigenclass
class << self
return self
end
end
end
class Person
def hello
module MyApp
module Extensions
module Page
def self.included(base)
base.class_eval do
belongs_to :account
end
end