Skip to content

Instantly share code, notes, and snippets.

@ptzn
Created December 29, 2009 15:34
Show Gist options
  • Save ptzn/265370 to your computer and use it in GitHub Desktop.
Save ptzn/265370 to your computer and use it in GitHub Desktop.
Foo::Bar.baz
module Foo
class Bar
def self.baz
puts 'In Foo::Bar'
end
end
end
>> Foo::Bar.baz # => In Foo::Bar
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment