Sha256: 100225f7e54aacb84d7ff214aba2cba654465f1435f0d22464ffec643626947e
Contents?: true
Size: 1.34 KB
Versions: 1
Compression:
Stored size: 1.34 KB
Contents
require 'rails/generators' require 'rails/generators/migration' require 'active_record' require 'rails/generators/active_record' module ActsAsAudited module Generators class UpgradeGenerator < Rails::Generators::Base include Rails::Generators::Migration source_root File.expand_path("../templates", __FILE__) # Implement the required interface for Rails::Generators::Migration. def self.next_migration_number(dirname) #:nodoc: next_migration_number = current_migration_number(dirname) + 1 if ActiveRecord::Base.timestamped_migrations [Time.now.utc.strftime("%Y%m%d%H%M%S"), "%.14d" % next_migration_number].max else "%.3d" % next_migration_number end end def copy_templates migrations_to_be_applied do |m| migration_template "#{m}.rb", "db/migrate/#{m}.rb" end end private def migrations_to_be_applied Audit.reset_column_information columns = ::Audit.columns.map(&:name) unless columns.include?( 'comment' ) yield :add_comment_to_audits end if columns.include?( 'changes' ) yield :rename_changes_to_audited_changes end unless columns.include?( 'remote_address' ) yield :add_remote_address_to_audits end end end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
acts_as_audited-2.0.0.rc4 | lib/generators/acts_as_audited/upgrade_generator.rb |