Sha256: 9159ee4e1c3951bb5c719d7a052b320b5be0e3c6be89fc6a808225ea9364ecee

Contents?: true

Size: 1.79 KB

Versions: 4

Compression:

Stored size: 1.79 KB

Contents

lib = File.expand_path("../lib", __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require "active_support/deprecation_test_helper/version"

Gem::Specification.new do |spec|
  spec.name          = "activesupport-deprecation_test_helper"
  spec.version       = ActiveSupport::DeprecationTestHelper::VERSION
  spec.authors       = ["Invoca"]
  spec.email         = ["operations@invoca.com"]

  spec.summary       = "A test helper that removes `ActiveSupport::Deprecation` noise from being interlaced in your test output."
  spec.description   = [
    "A test helper that removes `ActiveSupport::Deprecation` noise from being interlaced in your test output.",
    "Instead this gem collects any and all deprecation warnings that occur during your tests, and succinctly reports them at the end of the test run."
  ].join(' ')
  spec.homepage      = "https://github.com/Invoca/active_support-deprecation_test_helper"

  spec.metadata = {
    'allowed_push_host' => 'https://rubygems.org',
    'homepage_uri'      => 'https://github.com/Invoca/active_support-deprecation_test_helper',
    'source_code_uri'   => 'https://github.com/Invoca/active_support-deprecation_test_helper',
    'changelog_uri'     => 'https://github.com/Invoca/active_support-deprecation_test_helper/blob/master/CHANGELOG.md'
  }

  # 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.
  spec.files         = Dir.chdir(File.expand_path('..', __FILE__)) do
    `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
  end
  spec.bindir        = "exe"
  spec.executables   = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
  spec.require_paths = ["lib"]

  spec.add_dependency 'activesupport', '>= 4.2', '< 7'
end

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
activesupport-deprecation_test_helper-0.1.2 active_support-deprecation_test_helper.gemspec
activesupport-deprecation_test_helper-0.1.2.pre.1 active_support-deprecation_test_helper.gemspec
activesupport-deprecation_test_helper-0.1.1 active_support-deprecation_test_helper.gemspec
activesupport-deprecation_test_helper-0.1.0 active_support-deprecation_test_helper.gemspec