view config/routes.rb @ 148:c57e51af4692

Update with latest rails Not sure why "rails" is specifically required now.
author nanaya <me@nanaya.pro>
date Sat, 13 Jan 2018 03:16:17 +0900
parents d5a0d66ee457
children 5af9b537db86
line wrap: on
line source

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

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