Sha256: 8f199701e96369f7640c42ee83a6c603df5fbcdfe282aae93e0149ad5f60e624
Contents?: true
Size: 655 Bytes
Versions: 9
Compression:
Stored size: 655 Bytes
Contents
require 'rails/generators' require 'tramway/core/generators/install_generator' module Tramway::Page::Generators class InstallGenerator < ::Tramway::Core::Generators::InstallGenerator include Rails::Generators::Migration source_root File.expand_path('../templates', __FILE__) 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 migration_template 'create_tramway_page_pages.rb', 'db/migrate/create_tramway_page_pages.rb' end end end
Version data entries
9 entries across 9 versions & 1 rubygems