Sha256: f1d900a14e91d3762cff0ba445bf8f5131bcccde932ad4a39597641ab43c71fe
Contents?: true
Size: 417 Bytes
Versions: 51
Compression:
Stored size: 417 Bytes
Contents
require 'rails/generators' class TestAppGenerator < Rails::Generators::Base 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
51 entries across 51 versions & 2 rubygems