Skip to content

Instantly share code, notes, and snippets.

@fellix
Created November 26, 2012 13:14
Show Gist options
  • Save fellix/4148133 to your computer and use it in GitHub Desktop.
Save fellix/4148133 to your computer and use it in GitHub Desktop.
Sample Demeter
class A
attr_accessor :b
delegate :c, :to => :b
def do_things
c.do_things
end
end
class B
attr_accessor :c
end
class C
def do_things
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment