annotate config/routes.rb @ 151:f0ac0c99af36

Update gems
author nanaya <me@nanaya.pro>
date Sat, 17 Feb 2018 20:45:00 +0900
parents d5a0d66ee457
children 5af9b537db86
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
a1c9fadc0904 Initial.
edogawaconan <me@myconan.net>
parents:
diff changeset
1 Rails.application.routes.draw do
38
9e03bbbb1d43 Move static#index to tweet#index.
edogawaconan <me@myconan.net>
parents: 19
diff changeset
2 root "tweets#index"
0
a1c9fadc0904 Initial.
edogawaconan <me@myconan.net>
parents:
diff changeset
3
55
8f68ca606099 Add twitter id to the url so it'll be consistent.
nanaya <me@myconan.net>
parents: 38
diff changeset
4 get "*id" => "tweets#show", :defaults => { :format => :atom }, :as => "tweet"
0
a1c9fadc0904 Initial.
edogawaconan <me@myconan.net>
parents:
diff changeset
5 end