Sha256: 5b14725c5e32ab1c3d567d36ef35f4ad26861698cc2e6da680b978edf0051c26
Contents?: true
Size: 496 Bytes
Versions: 6
Compression:
Stored size: 496 Bytes
Contents
# frozen_string_literal: true module Noid module Rails # Generates the migrations into the host application class InstallGenerator < ::Rails::Generators::Base source_root ::File.expand_path('../templates', __FILE__) desc <<~DESCRIPTION Copies DB migrations DESCRIPTION def banner say_status('info', 'Installing noid-rails', :blue) end def migrations rake 'noid_rails_engine:install:migrations' end end end end
Version data entries
6 entries across 6 versions & 1 rubygems