Sha256: 84e3751e746213ee65ce4e834c2385fccf00d96817257b8ceee59f7c632dc1bf
Contents?: true
Size: 479 Bytes
Versions: 18
Compression:
Stored size: 479 Bytes
Contents
require 'rails/generators' class TestAppGenerator < Rails::Generators::Base source_root "./spec/test_app_templates" # if you need to generate any additional configuration # into the test app, this generator will be run immediately # after setting up the application def install_curation_concerns generate 'curation_concerns:install', '-f' end def install_engine generate 'geo_concerns:install' end def run_migrations rake 'db:migrate' end end
Version data entries
18 entries across 18 versions & 1 rubygems