Skip to content

Instantly share code, notes, and snippets.

@bostonaholic
Last active October 22, 2018 15:43
Show Gist options
  • Save bostonaholic/57bd187c1fd09147983e7f37149c85cb to your computer and use it in GitHub Desktop.
Save bostonaholic/57bd187c1fd09147983e7f37149c85cb to your computer and use it in GitHub Desktop.
Ruby comments in multiline chaining
select(...)
.where(...)
.group(...)
.order(...)
# can't comment a line in a chain
select(...)
# .where(...)
.group(...)
.order(...)
Thanks to @JacobNinja - "if the `.` trails the closing paren then that will work".
select(...).
# where(...).
group(...).
order(...)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment