Sha256: 97db49b327f1c93e2b3f7fc915404e6077f0ca447ee971c4d699a2d916262dac
Contents?: true
Size: 677 Bytes
Versions: 3
Compression:
Stored size: 677 Bytes
Contents
# frozen_string_literal: true 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', __dir__) 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
3 entries across 3 versions & 1 rubygems