-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfetch-api.gemspec
34 lines (28 loc) · 975 Bytes
/
fetch-api.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
32
33
34
require_relative 'lib/fetch/version'
Gem::Specification.new do |spec|
spec.name = 'fetch-api'
spec.version = Fetch::VERSION
spec.authors = ['Keita Urashima']
spec.email = ['[email protected]']
spec.summary = 'Something like the Fetch API for Ruby'
spec.homepage = 'https://github.com/ursm/fetch-api'
spec.license = 'MIT'
spec.required_ruby_version = '>= 3.1.0'
spec.metadata['homepage_uri'] = spec.homepage
spec.metadata['source_code_uri'] = 'https://github.com/ursm/fetch-api.git'
spec.files = Dir[
'LICENSE.txt',
'README.md',
'lib/**/*.rb',
'sig/**/*.rbs',
]
spec.bindir = 'exe'
spec.executables = spec.files.grep(%r{\Aexe/}) { File.basename(_1) }
spec.require_paths = ['lib']
spec.add_dependency 'json'
spec.add_dependency 'mini_mime'
spec.add_dependency 'net-http'
spec.add_dependency 'rack'
spec.add_dependency 'singleton'
spec.add_dependency 'uri'
end