Skip to content

Instantly share code, notes, and snippets.

@eqdw
Created April 1, 2014 20:59
Show Gist options
  • Save eqdw/9923064 to your computer and use it in GitHub Desktop.
Save eqdw/9923064 to your computer and use it in GitHub Desktop.
class FooController < ApplicationController
def an_action
do_thing
end
private
def do_thing
@side_effect = a_value
end
end
class FooController < ApplicationController
def an_action
@side_effect = do_thing
end
private
def do_thing
return a_value
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment