Skip to content

Instantly share code, notes, and snippets.

@djsun
Created September 24, 2010 14:28
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 djsun/595466 to your computer and use it in GitHub Desktop.
Save djsun/595466 to your computer and use it in GitHub Desktop.
# before
case requested_state
when "draft"
state_method = :redraft!
when "published"
state_method = :publish!
end
# after
state_method = case requested_state
when "draft"
:redraft!
when "published"
:publish!
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment