Sha256: 3b169dde0c0be4ea9222937c465d69b67697eb596d6684b1001c0f608fbcf22a

Contents?: true

Size: 1.05 KB

Versions: 1

Compression:

Stored size: 1.05 KB

Contents

# frozen_string_literal: true

Gem::Specification.new do |spec|
  spec.name = "capture_migration_sql"
  spec.version = File.read(File.expand_path("VERSION", __dir__)).strip
  spec.authors = ["Brian Durand"]
  spec.email = ["bbdurand@gmail.com"]

  spec.summary = "Capture the SQL that is executed when running ActiveRecord migrations so that it can be run in in other environments that don't support migrations."
  spec.homepage = "https://github.com/bdurand/capture_migration_sql"
  spec.license = "MIT"

  # Specify which files should be added to the gem when it is released.
  # The `git ls-files -z` loads the files in the RubyGem that have been added into git.
  ignore_files = %w[
    .
    Appraisals
    Gemfile
    Gemfile.lock
    Rakefile
    gemfiles/
    spec/
  ]
  spec.files = Dir.chdir(File.expand_path("..", __FILE__)) do
    `git ls-files -z`.split("\x0").reject { |f| ignore_files.any? { |path| f.start_with?(path) } }
  end

  spec.require_paths = ["lib"]

  spec.add_dependency "activerecord", ">= 4.2"

  spec.add_development_dependency "bundler"
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
capture_migration_sql-1.0.3 capture_migration_sql.gemspec