Sha256: 369b7abdf1b726e8bb579610d72e1a643ab16d3d00b1c726c6621565099c86d7
Contents?: true
Size: 660 Bytes
Versions: 4
Compression:
Stored size: 660 Bytes
Contents
require 'rails/generators' require 'tramway/core/generators/install_generator' module Tramway::Event::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_event_events.rb', 'db/migrate/create_tramway_event_events.rb' end end end
Version data entries
4 entries across 4 versions & 1 rubygems