forked from pact-foundation/pact_broker
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pact_broker.gemspec
57 lines (52 loc) · 2.74 KB
/
pact_broker.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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
# -*- encoding: utf-8 -*-
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'pact_broker/version'
Gem::Specification.new do |gem|
gem.name = "pact_broker"
gem.version = PactBroker::VERSION
gem.authors = ["Bethany Skurrie", "Sergei Matheson", "Warner Godfrey"]
gem.description = %q{A server that stores and returns pact files generated by the pact gem. It enables head/prod cross testing of the consumer and provider projects.}
gem.summary = %q{See description}
gem.homepage = "https://github.com/pact-foundation/pact_broker"
gem.required_ruby_version = '>= 2.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 'pact'
gem.add_runtime_dependency 'httparty', '~> 0.14'
gem.add_runtime_dependency 'json', '> 1.8', '< 3.0'
gem.add_runtime_dependency 'roar', '~> 1.1'
gem.add_runtime_dependency 'reform', '~> 2.2'
gem.add_runtime_dependency 'dry-validation', '~> 0.10.5'
gem.add_runtime_dependency 'sequel', '~> 4.23'
gem.add_runtime_dependency 'webmachine', '1.5.0'
gem.add_runtime_dependency 'semver2', '~> 3.4.2'
gem.add_runtime_dependency 'rack', '~>2.0'
gem.add_runtime_dependency 'redcarpet', '>=3.3.2', '~>3.3'
gem.add_runtime_dependency 'pact-support'
gem.add_runtime_dependency 'padrino-core', '~>0.14.1'
gem.add_runtime_dependency 'haml', '~>4.0'
gem.add_runtime_dependency 'sucker_punch', '~>2.0'
gem.add_runtime_dependency 'rack-protection', '~>2.0'
gem.add_runtime_dependency 'dry-types', '~> 0.10.3' # https://travis-ci.org/pact-foundation/pact_broker/jobs/249448621
gem.add_runtime_dependency 'table_print', '~> 1.5'
gem.add_development_dependency 'pact', '~>1.14'
gem.add_development_dependency 'bundler-audit', '~>0.4'
gem.add_development_dependency 'sqlite3', '~>1.3'
gem.add_development_dependency 'pry-byebug'
gem.add_development_dependency 'rake', '~>10.0'
gem.add_development_dependency 'fakefs', '~>0.4'
gem.add_development_dependency 'mysql2', '~>0.3.15'
gem.add_development_dependency 'webmock', '~>2.3'
gem.add_development_dependency 'rspec', '~>3.0'
gem.add_development_dependency 'rspec-its', '~>1.2'
gem.add_development_dependency 'database_cleaner', '~>1.6'
gem.add_development_dependency 'pg', '~>0.21'
gem.add_development_dependency 'conventional-changelog', '~>1.3'
gem.add_development_dependency 'bump', '~> 0.5'
gem.add_development_dependency 'timecop', '~> 0.9'
end