Skip to content

Instantly share code, notes, and snippets.

@benstein
Created June 1, 2011 11:19
Show Gist options
  • Save benstein/1002132 to your computer and use it in GitHub Desktop.
Save benstein/1002132 to your computer and use it in GitHub Desktop.
def click
case user_agent
when /ios|iphone|ipad/i
redirect_to itunes_store
when /android/i
redirect_to android_marketplace
else
render :text=>"Sorry but your phone is not supported."
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment