forked from YOU54F/pact-ruby-ffi
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpact-ffi.gemspec
24 lines (23 loc) · 1.2 KB
/
pact-ffi.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
lib = File.expand_path('lib', __dir__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'pact/ffi/version'
Gem::Specification.new do |spec|
spec.name = 'pact-ffi'
spec.version = Pact::Version::VERSION
spec.authors = ['Yousaf Nabi']
spec.email = ['[email protected]']
spec.summary = 'Pact Reference FFI libpact_ffi library wrapper'
spec.description = '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.'
spec.homepage = 'https://github.com/you54f/pact-ffi'
spec.license = 'MIT'
spec.files = `git ls-files bin lib pact.gemspec CHANGELOG.md LICENSE.txt README.md`.split($/)
spec.require_paths = ['lib']
# spec.add_development_dependency 'bundler', '~> 2.4'
spec.add_development_dependency 'cucumber', '~> 9.2'
spec.add_development_dependency 'httparty', '~> 0.21.0'
spec.add_development_dependency 'nokogiri', '~> 1.16'
spec.add_development_dependency 'rake'
spec.add_development_dependency 'rspec', '~> 3.0'
spec.add_development_dependency 'webrick', '~> 1.8'
spec.add_dependency 'ffi', '~> 1.15'
end