view config/routes.rb @ 183:bd6d0fbc2c7a

Update gems
author nanaya <me@nanaya.pro>
date Sun, 09 Dec 2018 02:39:33 +0900
parents 5af9b537db86
children e2150dce4e90
line wrap: on
line source

Rails.application.routes.draw do
  root "tweets#index"

  get ":id/:name" => "tweets#show", :defaults => { :format => :atom }, :as => "tweet"
  get ":name" => "tweets#redirect"
end