Skip to content

Instantly share code, notes, and snippets.

Created May 11, 2016 11:02
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 anonymous/7735cf710289815c85ec719abad8c403 to your computer and use it in GitHub Desktop.
Save anonymous/7735cf710289815c85ec719abad8c403 to your computer and use it in GitHub Desktop.
class MyMethods
def mymethod
MyModel.first_method.second_method(arg).thrid_method(arg.method)
end
end
class MyMethods
def mymethod
MyModel
.first_method
.second_method(arg)
.thrid_method(arg.method)
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment