Sha256: 67ed52f93df54f6d5e4d886fc8eb4d2cc960e5e6bb70f1687c3d57710dc58611
Contents?: true
Size: 1.12 KB
Versions: 1
Compression:
Stored size: 1.12 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.required_ruby_version = '>= 2.3' spec.files = `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" end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
deprecation_toolkit-1.2.0 | deprecation_toolkit.gemspec |