-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathrspec-webservice_matchers.gemspec
35 lines (30 loc) · 1.43 KB
/
rspec-webservice_matchers.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
# frozen_string_literal: true
lib = File.expand_path('lib', __dir__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'rspec/webservice_matchers/version'
Gem::Specification.new do |spec|
spec.name = 'rspec-webservice_matchers'
spec.version = RSpec::WebserviceMatchers::VERSION
spec.authors = ['Robb Shecter']
spec.email = ['[email protected]']
spec.description = 'Black-box web app configuration testing'
spec.summary = 'Black-box web app configuration testing'
spec.homepage = 'https://github.com/dogweather/rspec-webservice_matchers'
spec.license = 'MIT'
spec.files = `git ls-files`.split($INPUT_RECORD_SEPARATOR)
spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
spec.require_paths = ['lib']
spec.required_ruby_version = '>= 2.4.0'
spec.add_development_dependency 'bundler', '~> 2.0'
spec.add_development_dependency 'pry'
spec.add_development_dependency 'rake'
spec.add_development_dependency 'rspec'
spec.add_development_dependency 'rspec_junit_formatter', '0.2.2'
spec.add_development_dependency 'webmock'
spec.add_runtime_dependency 'faraday'
spec.add_runtime_dependency 'faraday_middleware'
spec.add_runtime_dependency 'rspec-core', '~> 3.0'
spec.add_runtime_dependency 'rspec-expectations', '~> 3.0'
spec.add_runtime_dependency 'validated_object', '~> 1.1.0'
end