Sha256: 05e7fbfae16e5f9375fd58c4270123feb8eb4c7b6e4afdffb83a819df90a6e17
Contents?: true
Size: 609 Bytes
Versions: 27
Compression:
Stored size: 609 Bytes
Contents
require 'rails/generators' class TestAppGenerator < Rails::Generators::Base source_root Rails.root def update_app Bundler.with_clean_env do run "bundle install" end end def run_qa_installer generate "qa:install" end def run_local_authority_installer generate "qa:local:files" generate "qa:local:tables" end def copy_local_authority_fixtures directory "../spec/fixtures/authorities", "config/authorities" end def run_discogs_installer generate "qa:discogs" end def run_migrations rake "qa:install:migrations" rake "db:migrate" end end
Version data entries
27 entries across 27 versions & 1 rubygems