Sha256: ebcafe97fe3542fe6031aa70f4d5c99ecce1c7b3b5e9054a97dc62098d12c72d

Contents?: true

Size: 400 Bytes

Versions: 6

Compression:

Stored size: 400 Bytes

Contents

require 'benchmark'
require 'active_record'
require 'active_record/migration'
require 'active_support/core_ext/object/blank'

require 'migration_tools/migration_extension'
require 'migration_tools/tasks'

module MigrationTools
  def self.forced?
    defined?(@forced) && !!@forced
  end

  def self.forced!
    @forced = true
  end

  MIGRATION_GROUPS = [ 'before', 'during', 'after', 'change' ]
end

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
migration_tools-1.9.0 lib/migration_tools.rb
migration_tools-1.8.0 lib/migration_tools.rb
migration_tools-1.7.0 lib/migration_tools.rb
migration_tools-1.6.0 lib/migration_tools.rb
migration_tools-1.5.0 lib/migration_tools.rb
migration_tools-1.4.0 lib/migration_tools.rb