Sha256: 6df3051faf4e2214aa029fdd7ebe68c0df8d08fd542632d81dbe05dd75f8abf5
Contents?: true
Size: 975 Bytes
Versions: 18
Compression:
Stored size: 975 Bytes
Contents
require 'rails/generators' require 'tramway/core/generators/install_generator' module Tramway::Landing::Generators class InstallGenerator < ::Tramway::Core::Generators::InstallGenerator include Rails::Generators::Migration source_root File.expand_path('../templates', __FILE__) 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 = [ :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 ] migrations.each do |migration| migration_template "#{migration}.rb", "db/migrate/#{migration}.rb" end end end end
Version data entries
18 entries across 18 versions & 1 rubygems