-
Notifications
You must be signed in to change notification settings - Fork 0
/
require-hooks.gemspec
28 lines (23 loc) · 1.11 KB
/
require-hooks.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
# frozen_string_literal: true
require_relative "lib/require-hooks/version"
Gem::Specification.new do |s|
s.name = "require-hooks"
s.version = RequireHooks::VERSION
s.authors = ["Vladimir Dementyev"]
s.email = ["dementiev.vm@gmail.com"]
s.homepage = "https://github.com/ruby-next/ruby-next"
s.summary = "Require Hooks provide infrastructure for intercepting require/load calls in Ruby."
s.description = "Require Hooks provide infrastructure for intercepting require/load calls in Ruby"
s.metadata = {
"bug_tracker_uri" => "https://github.com/ruby-next/ruby-next/issues",
"changelog_uri" => "https://github.com/ruby-next/ruby-next/blob/master/CHANGELOG.md",
"documentation_uri" => "https://github.com/ruby-next/ruby-next/blob/master/README.md",
"homepage_uri" => "https://github.com/ruby-next/ruby-next",
"source_code_uri" => "https://github.com/ruby-next/ruby-next",
"funding_uri" => "https://github.com/sponsors/palkan"
}
s.license = "MIT"
s.files = Dir.glob("lib/**/*") + %w[README.md LICENSE.txt CHANGELOG.md]
s.require_paths = ["lib"]
s.required_ruby_version = ">= 2.2"
end