Skip to content

Instantly share code, notes, and snippets.

@idlecool
Last active September 14, 2016 06:03
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 idlecool/a8571c1df54cf95534259ff5a347d69c to your computer and use it in GitHub Desktop.
Save idlecool/a8571c1df54cf95534259ff5a347d69c to your computer and use it in GitHub Desktop.
class User
# class method
# User::find
# some people use User.find, I am not one of those
def self.find id
# ...
end
# instance method
# User#where
def where
# ...
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment