forked from pact-foundation/pact-ruby
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpact.gemspec
37 lines (33 loc) · 2.01 KB
/
pact.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
# -*- encoding: utf-8 -*-
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'pact/version'
Gem::Specification.new do |gem|
gem.name = "pact"
gem.version = Pact::VERSION
gem.authors = ["James Fraser", "Sergei Matheson", "Brent Snook", "Ronald Holshausen", "Bethany Skurrie"]
gem.email = ["[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]"]
gem.description = %q{Enables consumer driven contract testing, providing a mock service and DSL for the consumer project, and interaction playback and verification for the service provider project.}
gem.summary = %q{Enables consumer driven contract testing, providing a mock service and DSL for the consumer project, and interaction playback and verification for the service provider project.}
gem.homepage = "https://github.com/realestate-com-au/pact.git"
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 'randexp', '~> 0.1.7'
gem.add_runtime_dependency 'rspec', '~> 2.12'
gem.add_runtime_dependency 'find_a_port', '~> 1.0.1'
gem.add_runtime_dependency 'rack-test', '~> 0.6.2'
gem.add_runtime_dependency 'awesome_print', '~> 1.1'
gem.add_runtime_dependency 'thor'
gem.add_runtime_dependency 'json' #Not locking down a version because buncher gem requires 1.6, while other projects use 1.7.
gem.add_runtime_dependency 'webrick'
gem.add_development_dependency 'rake', '~> 10.0.3'
gem.add_development_dependency 'webmock', '~> 1.9.3'
gem.add_development_dependency 'pry'
gem.add_development_dependency 'fakefs', '~> 0.4'
gem.add_development_dependency 'hashie', '~> 2.0'
gem.add_development_dependency 'rspec-fire'
gem.add_development_dependency 'activesupport'
end