forked from pact-foundation/pact_broker-client
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pact-broker-client.gemspec
30 lines (25 loc) · 1.25 KB
/
pact-broker-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
28
29
30
# -*- encoding: utf-8 -*-
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'pact_broker/client/version'
Gem::Specification.new do |gem|
gem.name = "pact_broker-client"
gem.version = PactBroker::Client::VERSION
gem.authors = ["Beth Skurrie"]
gem.email = ["[email protected]"]
gem.description = %q{Client for the Pact Broker. Publish, retrieve and query pacts and verification results. Manage webhooks and environments.}
gem.summary = %q{See description}
gem.homepage = "https://github.com/pact-foundation/pact_broker-client.git"
gem.required_ruby_version = '>= 2.0'
gem.files = `git ls-files`.split($/)
gem.executables = gem.files.grep(%r{^bin/}).map{ |f| File.basename(f) }
gem.test_files = gem.files.grep(%r{^(test|spec|features)/})
gem.require_paths = ["lib"]
gem.license = 'MIT'
gem.add_runtime_dependency 'httparty', ">= 0.21.0", "< 1.0.0"
gem.add_runtime_dependency 'term-ansicolor', '~> 1.7'
gem.add_runtime_dependency 'table_print', '~> 1.5'
gem.add_runtime_dependency 'thor', '>= 0.20', '< 2.0'
gem.add_runtime_dependency 'rake', '~> 13.0' #For FileList
gem.add_runtime_dependency 'dig_rb', '~> 1.0'
end