Skip to content

Instantly share code, notes, and snippets.

@adelcambre
Created February 12, 2010 01:42
Show Gist options
  • Select an option

  • Save adelcambre/302217 to your computer and use it in GitHub Desktop.

Select an option

Save adelcambre/302217 to your computer and use it in GitHub Desktop.
module Foo
module Bar
module Helper
def make_it_so
return where_i_came_from
end
end
end
end
class Asdf
include Foo::Bar::Helper
end
Asdf.new.make_it_so # => Foo::Bar::Helper
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment