require "rails/generators" require "generators/statesman/generator_helpers" # Add statesman attributes to a pre-existing transition class module Statesman class MigrationGenerator < Rails::Generators::Base include Statesman::GeneratorHelpers desc "Add the required Statesman attributes to your transition model" argument :parent, type: :string, desc: "Your parent model name" argument :klass, type: :string, desc: "Your transition model name" source_root File.expand_path("../templates", __FILE__) def create_model_file template("update_migration.rb.erb", file_name) end private def file_name "db/migrate/#{next_migration_number}_add_statesman_to_#{table_name}.rb" end end end