Skip to content

Instantly share code, notes, and snippets.

@wwboynton
Created August 7, 2015 15:19
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save wwboynton/d03b3450715b4ee480c5 to your computer and use it in GitHub Desktop.
Save wwboynton/d03b3450715b4ee480c5 to your computer and use it in GitHub Desktop.
class Klass
def self.derp #class method
cats
end
def self.cats #class method
puts "cats are fun!"
end
def foo
bar
end
def bar
puts "It's a foobar!"
end
end
Klass.derp #=> cats are fun!
Klass.new.foo #=> It's a foobar!
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment