-
Notifications
You must be signed in to change notification settings - Fork 1
/
provet-client.gemspec
27 lines (22 loc) · 1017 Bytes
/
provet-client.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
# frozen_string_literal: true
require File.expand_path('lib/provet/version', __dir__)
Gem::Specification.new do |spec|
spec.name = 'provet-client'
spec.version = Provet::VERSION
spec.authors = ['EmCousin']
spec.email = ['[email protected]']
spec.summary = 'A Provet Cloud client for ruby'
spec.license = 'MIT'
spec.required_ruby_version = Gem::Requirement.new('>= 2.4.0')
spec.homepage = 'https://github.com/EmCousin/provet-client'
spec.metadata['homepage_uri'] = spec.homepage
spec.metadata['source_code_uri'] = spec.homepage
spec.metadata['changelog_uri'] = 'https://github.com/EmCousin/provet-client/blob/main/CHANGELOG.md'
spec.files = Dir.chdir(File.expand_path(__dir__)) do
`git ls-files -z`.split("\x0").reject { |f| f.match(%r{\A(?:test|spec|features)/}) }
end
spec.bindir = 'exe'
spec.executables = spec.files.grep(%r{\Aexe/}) { |f| File.basename(f) }
spec.require_paths = ['lib']
spec.add_dependency 'httparty'
end