Sha256: 3e993f0f25bca40b46cce522e116afcc4cbd08154b04467088f562d574ca316f
Contents?: true
Size: 493 Bytes
Versions: 9
Compression:
Stored size: 493 Bytes
Contents
require 'rails/generators' class TestAppGenerator < Rails::Generators::Base source_root File.expand_path("../../../../test_app_templates", __FILE__) def remove_index remove_file "public/index.html" end def run_blacklight_generator say_status("warning", "GENERATING BL", :yellow) Bundler.with_clean_env do run "bundle install" end generate 'blacklight:install' end def run_gallery_install generate 'blacklight_gallery:install' end end
Version data entries
9 entries across 9 versions & 1 rubygems