Skip to content

Instantly share code, notes, and snippets.

@Olefine
Created May 24, 2013 13:54
Show Gist options
  • Save Olefine/5643699 to your computer and use it in GitHub Desktop.
Save Olefine/5643699 to your computer and use it in GitHub Desktop.
another way create class methods in ruby
class Item
class << self
def show
puts "Class method show invoked"
end
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment