config/routes.rb in about_page-0.2.6 vs config/routes.rb in about_page-0.2.7

- old
+ new

@@ -1,5 +1,5 @@ AboutPage::Engine.routes.draw do - match 'health' => 'about_page/about#health' - match ":filter" => 'about_page/about#index', :as => 'component' + match 'health', to: 'about_page/about#health', via: :get + match ":filter", to: 'about_page/about#index', :as => 'component', via: :get root :to => 'about_page/about#index' end