Sha256: 132343215ba60b9d4d949e7debbb231bf119dc13f554d979f77c855674291991
Contents?: true
Size: 584 Bytes
Versions: 6
Compression:
Stored size: 584 Bytes
Contents
Rails.application.routes.draw do root :to => "entries#index" match 'feed' => 'feed#index', :format => :xml, :as => 'feed' match 'feed/atom.xml' => 'feed#index' resources :entries do resources :comments end namespace :admin do root :to => 'entries#index' resource :settings resources :entries end devise_for :admin, :path_names => { :sign_in => 'login', :sign_out => 'logout' } match "/:year/:month/:day/:id" => 'entries#show', :constraints => { :year => /\d{4}/, :month => /\d{1,2}/, :day => /\d{1,2}/ } end
Version data entries
6 entries across 6 versions & 1 rubygems
Version | Path |
---|---|
jabe-0.5.9 | config/routes.rb |
jabe-0.5.8 | config/routes.rb |
jabe-0.5.7 | config/routes.rb |
jabe-0.5.6 | config/routes.rb |
jabe-0.5.5 | config/routes.rb |
jabe-0.5.4 | config/routes.rb |