Skip to content

Instantly share code, notes, and snippets.

@gbpereira
Last active January 10, 2018 01:47
Show Gist options
  • Save gbpereira/aa92f29542343024ae7c to your computer and use it in GitHub Desktop.
Save gbpereira/aa92f29542343024ae7c to your computer and use it in GitHub Desktop.
# métodos de classe
class SomeClass
def self.handle
puts 'class method'
end
end
puts SomeClass.handle
# adicona um método singleton ao objeto c
c = SomeClass.new
def c.handle
puts 'singleton method'
end
puts c.handle
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment