-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathfulfil.gemspec
29 lines (22 loc) · 1016 Bytes
/
fulfil.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
# frozen_string_literal: true
require_relative 'lib/fulfil/version'
Gem::Specification.new do |spec|
spec.name = 'fulfil-io'
spec.version = Fulfil::VERSION
spec.authors = ['Chris Moore', 'Kat Fairbanks', 'Stefan Vermaas']
spec.email = ['[email protected]']
spec.summary = 'Interact with the Fulfil.io API'
spec.homepage = 'https://github.com/knowndecimal/fulfil'
spec.license = 'MIT'
spec.required_ruby_version = '>= 2.7'
spec.metadata['rubygems_mfa_required'] = 'true'
# Specify which files should be added to the gem when it is released.
# To include hidden files from the lib/ folder you need to use the File::FNM_DOTMATCH flag
spec.files = Dir.chdir(File.expand_path(__dir__)) do
Dir['lib/**/*', 'LICENSE', 'Rakefile', 'README.md']
end
spec.bindir = 'bin'
spec.require_paths = 'lib'
spec.extra_rdoc_files = Dir['README.md', 'CHANGELOG.md', 'LICENSE.txt']
spec.add_dependency 'http', '>= 4.4.1', '< 5.2.0'
end