Sha256: 204436d69f7510f097c8a04694ee4dc97dc0dda18b81a7f376096962935ea7f3
Contents?: true
Size: 535 Bytes
Versions: 50
Compression:
Stored size: 535 Bytes
Contents
# frozen_string_literal: true class QaServer::ModelsGenerator < Rails::Generators::Base source_root File.expand_path('../templates', __FILE__) desc """ This generator makes the following changes to your application: 1. Copies database migrations """ def banner say_status('info', 'INSTALLING QA_SERVER MODELS AND MIGRATIONS', :blue) end # Setup the database migrations def copy_migrations say_status('info', ' -- installing migrations', :blue) rake 'qa_server:install:migrations' end end
Version data entries
50 entries across 50 versions & 1 rubygems