Skip to content

Instantly share code, notes, and snippets.

@steveclarke
Created April 5, 2012 01:26
Show Gist options
  • Save steveclarke/2307178 to your computer and use it in GitHub Desktop.
Save steveclarke/2307178 to your computer and use it in GitHub Desktop.
class << self
# Shorthand way of declaring Class/Module methods without having to def self.bar, self.baz, etc.
module Foo
class << self
def bar
end
def baz
end
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment