Skip to content

Instantly share code, notes, and snippets.

@xrl
Created August 9, 2012 05:47
Show Gist options
  • Save xrl/3301430 to your computer and use it in GitHub Desktop.
Save xrl/3301430 to your computer and use it in GitHub Desktop.
if instance.respond_to?(:index)
instance.index
message = "success"
else
message = "#{model_klass} could not be indexed"
end
VS
message = if instance.respond_to?(:index)
instance.index
"success"
else
"#{model_klass} could not be indexed"
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment