soaspec.gemspec in soaspec-0.2.7 vs soaspec.gemspec in soaspec-0.2.8
- old
+ new
@@ -1,19 +1,18 @@
-
lib = File.expand_path('lib', __dir__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'soaspec/version'
Gem::Specification.new do |spec|
spec.name = 'soaspec'
spec.version = Soaspec::VERSION
spec.authors = ['SamuelGarrattIQA']
spec.email = ['samuel.garratt@integrationqa.com']
- spec.summary = "Helps to create RSpec specs for 'SOAP' or 'REST' apis "
- spec.description = "Helps to create RSpec specs for 'SOAP' or 'REST' apis. Easily represent multiple requests with
-the same configuration "
+ spec.summary = "Helps to create tests for 'SOAP' or 'REST' apis "
+ spec.description = "Helps to create tests for 'SOAP' or 'REST' apis. Easily represent multiple requests with
+the same configuration. Examples designed for RSpec and Cucumber."
spec.homepage = 'https://gitlab.com/samuel-garratt/soaspec'
spec.license = 'MIT'
spec.files = `git ls-files -z`.split("\x0").reject do |f|
f.match(%r{^(test|spec|features|bin|config|template|credentials)/})
@@ -36,10 +35,10 @@
spec.add_dependency 'hashie'
spec.add_dependency 'jsonpath'
spec.add_dependency 'nokogiri'
spec.add_dependency 'rest-client', '>= 2.0' # REST
spec.add_dependency 'rspec', '~> 3.0' # This framework is designed to work with RSpec
- spec.add_dependency 'rspec-its', '>= 1.2.0'
+ spec.add_dependency 'rspec-its'
spec.add_dependency 'savon', '>= 2' # SOAP
spec.add_dependency 'sinatra'
spec.add_dependency 'sinatra-basic-auth'
spec.add_dependency 'sinatra-docdsl'
spec.add_dependency 'thor'