lib/ecm/pictures/routing.rb in ecm_pictures2-1.1.2 vs lib/ecm/pictures/routing.rb in ecm_pictures2-2.0.0

- old
+ new

@@ -7,16 +7,15 @@ # Ecm::Pictures::Routing.routes(self, { :picture_gallery_actions => [ :show ]}) # # This will only create the show action for picture galleries, but omit the index action. def self.routes(router, options = {}) options.reverse_merge!( - { :picture_gallery_actions => [:index, :show], - :picture_actions => [:index, :show] - } + picture_gallery_actions: [:index, :show], + picture_actions: [:index, :show] ) - - router.resources :ecm_pictures_picture_galleries, :only => options[:picture_gallery_actions], :controller => 'ecm/pictures/picture_galleries' - router.resources :ecm_pictures_pictures,:only => options[:picture_actions], :controller => 'ecm/pictures/pictures' - end + + router.resources :ecm_pictures_picture_galleries, only: options[:picture_gallery_actions], controller: 'ecm/pictures/picture_galleries' + router.resources :ecm_pictures_pictures, only: options[:picture_actions], controller: 'ecm/pictures/pictures' + end end end -end +end