Skip to content

Instantly share code, notes, and snippets.

@coderdan
Created March 16, 2016 04:32
Show Gist options
  • Save coderdan/6a1df7175999fdd6bd15 to your computer and use it in GitHub Desktop.
Save coderdan/6a1df7175999fdd6bd15 to your computer and use it in GitHub Desktop.
To Param
def site_path(site)
val = if site.respond_to?(:to_param)
site.to_param
else
site
end
"/sites/#{val}"
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment