engine/config/routes.rb

9 lines
174 B
Ruby
Raw Normal View History

2010-03-29 22:01:47 +00:00
Locomotive::Application.routes.draw do |map|
constraints(Locomotive::Routing::DefaultConstraint) do
root :to => 'home#show'
end
match '/' => 'pages#show'
2010-03-29 22:01:47 +00:00
end