Sha256: f41c1cc7ed98e70ada61eadd2dcafb446c4ee3671d45ddcab90b88661557d6a6
Contents?: true
Size: 1.21 KB
Versions: 5
Compression:
Stored size: 1.21 KB
Contents
# frozen_string_literal: true require 'rails/generators' require 'tramway/generators/install_generator' module Tramway::Landing::Generators class InstallGenerator < ::Tramway::Generators::InstallGenerator include Rails::Generators::Migration source_root File.expand_path('templates', __dir__) 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_landing_blocks add_navbar_link_to_tramway_landing_blocks add_anchor_to_tramway_landing_blocks add_description_to_tramway_landing_blocks add_link_object_id_to_tramway_landing_blocks add_link_object_type_to_tramway_landing_blocks add_button_to_tramway_landing_blocks add_view_name_to_tramway_landing_blocks add_values_to_tramway_landing_blocks add_page_id_to_tramway_landing_blocks create_tramway_landing_forms create_tramway_landing_tools ] migrations.each do |migration| migration_template "#{migration}.rb", "db/migrate/#{migration}.rb" end end end end
Version data entries
5 entries across 5 versions & 1 rubygems