config/routes.rb in shim-0.0.1 vs config/routes.rb in shim-0.0.2
- old
+ new
@@ -1,3 +1,4 @@
Shim::Engine.routes.draw do
- match "/*id" => 'pages#show', :as => :page, :format => false
+ match "*id" => 'pages#show', :as => :page, :format => false
+ root :to => 'pages#show', :id => "index"
end