Skip to content

Instantly share code, notes, and snippets.

@0x0dea

0x0dea/foo.rb Secret

Created July 26, 2015 21:01
Show Gist options
  • Save 0x0dea/66db6eee00d65eff85d9 to your computer and use it in GitHub Desktop.
Save 0x0dea/66db6eee00d65eff85d9 to your computer and use it in GitHub Desktop.
module Foo
def self.bar
end
def self.baz
end
end
module Foo
class << self
def bar
end
def baz
end
end
end
module Foo
module_function
def bar
end
def baz
end
end
module Foo
def bar
end
def baz
end
module_function :bar, :baz
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment