Sha256: 9f9233b5d97c88bd3151d02c50b0c7c1f65848d66fa533f281b14038d6ca3926
Contents?: true
Size: 653 Bytes
Versions: 6
Compression:
Stored size: 653 Bytes
Contents
require 'rails/generators' require 'tramway/core/generators/install_generator' module Tramway::News::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_news_news.rb', 'db/migrate/create_tramway_news_news.rb' end end end
Version data entries
6 entries across 6 versions & 1 rubygems