Sha256: e3af56c04d68b4a89d8d2977dd152d7f9de460d54307eb87752a863e998c3d33

Contents?: true

Size: 1.23 KB

Versions: 1

Compression:

Stored size: 1.23 KB

Contents

# frozen_string_literal: true

lib = File.expand_path("lib", __dir__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require "deprecation_toolkit/version"

Gem::Specification.new do |spec|
  spec.name = "deprecation_toolkit"
  spec.version = DeprecationToolkit::VERSION
  spec.authors = %w(Shopify)
  spec.email = ["rails@shopify.com"]

  spec.summary = "Deprecation Toolkit around ActiveSupport::Deprecation"
  spec.homepage = "https://github.com/shopify/deprecation_toolkit"
  spec.license = "MIT"

  spec.metadata["homepage_uri"] = spec.homepage
  spec.metadata["source_code_uri"] = "https://github.com/shopify/deprecation_toolkit"
  spec.metadata["changelog_uri"] = "https://github.com/Shopify/deprecation_toolkit/blob/master/CHANGELOG.md"

  spec.metadata['allowed_push_host'] = "https://rubygems.org"

  spec.required_ruby_version = '>= 2.3'

  spec.files = %x(git ls-files -z).split("\x0").reject do |f|
    f.match(%r{^(test)/})
  end
  spec.require_paths = %w(lib)

  spec.add_runtime_dependency('activesupport', '>= 4.2')

  spec.add_development_dependency("bundler", ">= 1.16")
  spec.add_development_dependency("rake", "~> 10.0")
  spec.add_development_dependency("minitest", "~> 5.0")
  spec.add_development_dependency("rspec", "~> 3.0")
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
deprecation_toolkit-1.5.0 deprecation_toolkit.gemspec