forked from Shopify/deprecation_toolkit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
deprecation_toolkit.gemspec
31 lines (23 loc) · 1.02 KB
/
deprecation_toolkit.gemspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
# 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 = ["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/main/CHANGELOG.md"
spec.metadata["allowed_push_host"] = "https://rubygems.org"
spec.required_ruby_version = ">= 2.6"
spec.files = %x(git ls-files -z).split("\x0").reject do |f|
f.match(%r{^(test)/})
end
spec.require_paths = ["lib"]
spec.add_runtime_dependency("activesupport", ">= 5.2")
end