Skip to content

Instantly share code, notes, and snippets.

@ignu
Created November 11, 2010 16:18
Show Gist options
  • Save ignu/672707 to your computer and use it in GitHub Desktop.
Save ignu/672707 to your computer and use it in GitHub Desktop.
class BaseThing
end
class A < BaseThing end
class B < BaseThing end
case basething
when A:
redirect_to a_path(basething)
when B:
redirect_to b_path(basething)
ebd
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment