Skip to content

Instantly share code, notes, and snippets.

@Laner12
Forked from Carmer/routes_to_route_helpers.md
Last active July 20, 2016 19:49
Show Gist options
  • Save Laner12/13b57fb0d331e78379289e1e6c3575c7 to your computer and use it in GitHub Desktop.
Save Laner12/13b57fb0d331e78379289e1e6c3575c7 to your computer and use it in GitHub Desktop.
  • get "/artists" artists_path
  • get "/artists/42" artist_path(42)
  • get "/artists/42/edit" edit_artist_path(42)
  • put "/artists/42" artist_path(42)
  • get "/artists/new" new_artsit_path
  • post "/artists" artists_path
  • delete "/artists/42" artist_path(42)
  • get "/stickers" stickers_path
  • get "/stickers/42" sticker_path(42)
  • get "/stickers/42/edit" edit_sticker_path(42)
  • put "/stickers/42" sticker_path(42)
  • get "/stickers/new" new_sticker_path
  • post "/stickers" stickers_path
  • delete "/stickers/42" sticker_path(42)
  • get "/albums" albums_path
  • get "/albums/42" album_path(42)
  • get "/albums/42/edit" edit_album_path(42)
  • put "/albums/42" albums_path(42)
  • get "/albums/new" new_album_path
  • post "/albums" albums_path
  • delete "/albums/42" album_path(42)
  • get "/tracks" tracks_path
  • get "/tracks/42" track_path(42)
  • get "/tracks/42/edit" edit_track_path(42)
  • put "/tracks/42" track_path(42)
  • get "/tracks/new" new_artist_path
  • post "/tracks" tracks_path
  • delete "/tracks/42" track_path(42)
  • get "/songs" songs_path
  • get "/songs/42" song_path(42)
  • get "/songs/42/edit" edit_song_path(42)
  • put "/songs/42" song_path(42)
  • get "/songs/new" new_song_path
  • post "/songs" songs_path
  • delete "/songs/42" song_path(42)
  • get "/tasks" tasks_path
  • get "/tasks/42" task_path(42)
  • get "/tasks/42/edit" edit_task_path(42)
  • put "/tasks/42" task_path(42)
  • get "/tasks/new" new_task_path
  • post "/tasks" tasks_path
  • delete "/tasks/42" task_path(42)
  • get "/tools" tools_path
  • get "/tools/42" tool_path(42)
  • get "/tools/42/edit" edit_tool_path(42)
  • put "/tools/42" tool_path(42)
  • get "/tools/new" new_tool_path
  • post "/tools" tools_path
  • delete "/tools/42" tool_path(42)
  • get "/items" items_path
  • get "/items/42" item_path(42)
  • get "/items/42/edit" edit_item_path(42)
  • put "/items/42" item_path(42)
  • get "/items/new" new_item_path
  • post "/items" items_path
  • delete "/items/42" item_path(42)
  • get "/cards" cards_path
  • get "/cards/42" card_path(42)
  • get "/cards/42/edit" edit_card_path(42)
  • put "/cards/42" card_path(42)
  • get "/cards/new" new_card_path
  • post "/cards" cards_path
  • delete "/cards/42" card_path(42)
  • get "/pictures" pictures_path
  • get "/pictures/42" picture_path(42)
  • get "/pictures/42/edit" edit_picture(42)
  • put "/pictures/42" picture_path(42)
  • get "/pictures/new" new_picture(42)
  • post "/pictures" pictures_path
  • delete "/pictures/42" picture_path(42)
  • get "/hard-candies" hard-candies_path
  • get "/hard-candies/42" hard-candies_path(42)
  • get "/hard-candies/42/edit" edit_hard-candies_path(42)
  • put "/hard-candies/42" hard-candies_path(42)
  • get "/hard-candies/new" new
  • post "/hard-candies"
  • delete "/hard-candies/42"
  • get "/toys"
  • get "/toys/42"
  • get "/toys/42/edit"
  • put "/toys/42"
  • get "/toys/new"
  • post "/toys"
  • delete "/toys/42"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment