Sha256: 1710b7a73f72db490dd84ad20ccf61cb90275f4858daa7a6cc6d3e4120102a24
Contents?: true
Size: 825 Bytes
Versions: 2
Compression:
Stored size: 825 Bytes
Contents
# frozen_string_literal: true require 'rails/generators' require 'tramway/core/generators/install_generator' module Tramway::Partner::Generators class InstallGenerator < ::Tramway::Core::Generators::InstallGenerator include Rails::Generators::Migration source_root File.expand_path('templates', __dir__) def run_other_generators; end def self.next_migration_number(path) next_migration_number = current_migration_number(path) + 1 ActiveRecord::Migration.next_migration_number next_migration_number end def copy_migrations migrations = %i[ create_tramway_partner_organizations create_tramway_partner_partnerships ] migrations.each do |migration| migration_template "#{migration}.rb", "db/migrate/#{migration}.rb" end end end end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
tramway-partner-1.0.4 | lib/tramway/partner/generators/install_generator.rb |
tramway-partner-1.0.3.2 | lib/tramway/partner/generators/install_generator.rb |