1
0
Fork 0
mirror of https://github.com/paper-trail-gem/paper_trail.git synced 2022-11-09 11:33:19 -05:00
paper-trail-gem--paper_trail/lib/generators/paper_trail/install_generator.rb

24 lines
879 B
Ruby
Raw Normal View History

2011-02-09 05:52:43 -05:00
require 'rails/generators'
require 'rails/generators/migration'
require 'rails/generators/active_record'
2011-02-09 05:52:43 -05:00
module PaperTrail
class InstallGenerator < ::Rails::Generators::Base
include ::Rails::Generators::Migration
2011-02-09 05:52:43 -05:00
source_root File.expand_path('../templates', __FILE__)
class_option :with_changes, :type => :boolean, :default => false, :desc => "Store changeset (diff) with each version"
2011-02-09 05:52:43 -05:00
desc 'Generates (but does not run) a migration to add a versions table.'
def create_migration_file
migration_template 'create_versions.rb', 'db/migrate/create_versions.rb'
2011-07-12 13:08:58 -04:00
migration_template 'add_object_changes_column_to_versions.rb', 'db/migrate/add_object_changes_column_to_versions.rb' if options.with_changes?
2011-02-09 05:52:43 -05:00
end
2013-02-04 19:31:05 -05:00
def self.next_migration_number(dirname)
::ActiveRecord::Generators::Base.next_migration_number(dirname)
2013-02-04 19:31:05 -05:00
end
2011-02-09 05:52:43 -05:00
end
end