Skip to content

Instantly share code, notes, and snippets.

@sinsoku
Created July 25, 2020 06:17
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 sinsoku/03dc51d8305821d25091c9e3e9d746cb to your computer and use it in GitHub Desktop.
Save sinsoku/03dc51d8305821d25091c9e3e9d746cb to your computer and use it in GitHub Desktop.
# bad
class A
def cool_calc(b)
b.foo + b.bar * 2
end
end
# good
class B
def cool_value
foo + bar * 2
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment