Sha256: 7f79d0061c6393e4301fb427e043275501ca647a3ddc0010a744ebcd4aa119a6
Contents?: true
Size: 1.15 KB
Versions: 1
Compression:
Stored size: 1.15 KB
Contents
require 'rails/generators' module CommonwealthVlrEngine class RoutesGenerator < Rails::Generators::Base source_root File.expand_path('../templates', __FILE__) desc """ This generator makes the following changes to your application: 1. Injects route declarations into your routes.rb 2. Removes default routes from basic Blacklight install. Thank you for installing Commonwealth VLR. """ # Add CommonwealthVlrEngine to the routes def inject_vlr_routes unless IO.read("config/routes.rb").include?('CommonwealthVlrEngine::Engine') marker = 'Rails.application.routes.draw do' insert_into_file "config/routes.rb", :after => marker do %q{ root :to => 'pages#home' # routes for CommonwealthVlrEngine mount CommonwealthVlrEngine::Engine => '/commonwealth-vlr-engine' # user authentication devise_for :users, :controllers => {:omniauth_callbacks => "users/omniauth_callbacks", :registrations => "users/registrations", :sessions => "users/sessions"} } end bl_root_marker = 'root to: "catalog#index"' gsub_file("config/routes.rb", bl_root_marker, "") end end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
commonwealth-vlr-engine-0.0.1 | lib/generators/commonwealth_vlr_engine/routes_generator.rb |