class Blacklight::Install
Public Instance Methods
Source
# File lib/generators/blacklight/install_generator.rb, line 76 def add_default_catalog_route route("root to: \"#{controller_name}#index\"") end
Source
# File lib/generators/blacklight/install_generator.rb, line 95 def add_routes route "mount Blacklight::Engine => '/'" end
Source
# File lib/generators/blacklight/install_generator.rb, line 30 def add_solr_wrapper generate 'blacklight:solr' unless options[:'skip-solr'] end
Source
# File lib/generators/blacklight/install_generator.rb, line 43 def bundle_install inside destination_root do Bundler.with_unbundled_env do run "bundle install" end end end
Source
# File lib/generators/blacklight/install_generator.rb, line 37 def copy_public_assets generated_options = "--bootstrap-version='#{options[:'bootstrap-version']}'" if options[:'bootstrap-version'] generate "blacklight:assets", generated_options unless options[:'skip-assets'] end
Copy all files in templates/public/ directory to public/ Call external generator in AssetsGenerator
, so we can leave that callable seperately too.
Source
# File lib/generators/blacklight/install_generator.rb, line 51 def generate_blacklight_document generate 'blacklight:document', document_name end
Source
# File lib/generators/blacklight/install_generator.rb, line 84 def generate_blacklight_marc_demo return unless options[:marc] blacklight_marc = String.new('blacklight-marc') gem blacklight_marc, '~> 8.0' bundle_install generate 'blacklight:marc:install' end
Source
# File lib/generators/blacklight/install_generator.rb, line 59 def generate_blacklight_models generate 'blacklight:models' end
Source
# File lib/generators/blacklight/install_generator.rb, line 63 def generate_blacklight_user generator_args = [model_name] if options[:devise] generator_args << "--devise #{options[:devise]}" end generate 'blacklight:user', generator_args.join(" ") end
Source
# File lib/generators/blacklight/install_generator.rb, line 72 def generate_controller generate 'blacklight:controller', controller_name end
Source
# File lib/generators/blacklight/install_generator.rb, line 55 def generate_search_builder generate 'blacklight:search_builder', search_builder_name end
Source
# File lib/generators/blacklight/install_generator.rb, line 80 def inject_blacklight_i18n_strings copy_file "blacklight.en.yml", "config/locales/blacklight.en.yml" end