Skip to content

Instantly share code, notes, and snippets.

@mrmicahcooper
Created March 1, 2013 20:42
Show Gist options
  • Select an option

  • Save mrmicahcooper/5067626 to your computer and use it in GitHub Desktop.

Select an option

Save mrmicahcooper/5067626 to your computer and use it in GitHub Desktop.
module NavigationHelpers
def path_to(page_name)
case page_name
when /the home\s?page/
'/'
when /^that ([\w ]+)'s page$/
polymorphic_path(instance_variable_get("@#{$1.parameterize('_')}"))
else
raise "Can't find mapping from \"#{page_name}\" to a path.\n" +
"Now, go and add a mapping in #{__FILE__}"
end
end
end
World(NavigationHelpers)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment