pact 1.9.2 → 1.9.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/CHANGELOG.md +4 -0
- data/lib/pact/tasks/task_helper.rb +0 -1
- data/lib/pact/version.rb +1 -1
- data/pact.gemspec +2 -0
- metadata +3 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: e9938364f6f090709869e27d76354da90ec1fc23
|
|
4
|
+
data.tar.gz: 12e5498fe57eccd63c514e198040c275c447046f
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 69cf3588ccf75a6c12ce79aed098f5078c21c12b2aa38792b72ddcc098f5a62aa171531ee91ce538e145bf939cb6f7ee783d25911ec77f1091f3f9a906db873c
|
|
7
|
+
data.tar.gz: f8ca0528ee9d2044cfd72c4d2bf7749becd09c779faa350c27083974bf0b267b9421048a57359b181117ea44633ec404f7c79e73de433311fb816d9fcdb56d9d
|
data/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,10 @@ Do this to generate your change history
|
|
|
2
2
|
|
|
3
3
|
git log --pretty=format:' * %h - %s (%an, %ad)' vX.Y.Z..HEAD
|
|
4
4
|
|
|
5
|
+
### 1.9.3 (27 Jun 2016)
|
|
6
|
+
* edb2208 - Clarify that pact will only work with ruby >= 2.0 (Sergei Matheson, Mon Jun 27 10:53:08 2016 +1000)
|
|
7
|
+
* 52de989 - remove duplicated `--backtrace` option (Takuto Wada, Tue Jun 7 15:51:12 2016 +0900)
|
|
8
|
+
|
|
5
9
|
### 1.9.2 (26 May 2016)
|
|
6
10
|
* 88741ac - Merge pull request #104 from reevoo/randomise_contract_interactions (Sergei Matheson, Thu May 26 15:09:31 2016 +1000)
|
|
7
11
|
* 67c2b30 - Add interactions_replay_order and pactfile_write_order into Pact.configuration (Alex Malkov, Tue May 10 01:44:04 2016 +0100)
|
|
@@ -28,7 +28,6 @@ module Pact
|
|
|
28
28
|
command_parts << "--pact-broker-username" << ENV['PACT_BROKER_USERNAME'] if ENV['PACT_BROKER_USERNAME']
|
|
29
29
|
command_parts << "--pact-broker-password" << ENV['PACT_BROKER_PASSWORD'] if ENV['PACT_BROKER_PASSWORD']
|
|
30
30
|
command_parts << "--backtrace" if ENV['BACKTRACE'] == 'true'
|
|
31
|
-
command_parts << "--backtrace" if ENV['BACKTRACE'] == 'true'
|
|
32
31
|
command_parts << "--description #{Shellwords.escape(ENV['PACT_DESCRIPTION'])}" if ENV['PACT_DESCRIPTION']
|
|
33
32
|
command_parts << "--provider-state #{Shellwords.escape(ENV['PACT_PROVIDER_STATE'])}" if ENV['PACT_PROVIDER_STATE']
|
|
34
33
|
command_parts.flatten.join(" ")
|
data/lib/pact/version.rb
CHANGED
data/pact.gemspec
CHANGED
|
@@ -12,6 +12,8 @@ Gem::Specification.new do |gem|
|
|
|
12
12
|
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.}
|
|
13
13
|
gem.homepage = "https://github.com/realestate-com-au/pact"
|
|
14
14
|
|
|
15
|
+
gem.required_ruby_version = '>= 2.0'
|
|
16
|
+
|
|
15
17
|
gem.files = `git ls-files bin lib pact.gemspec CHANGELOG.md LICENSE.txt`.split($/)
|
|
16
18
|
gem.executables = gem.files.grep(%r{^bin/}).map{ |f| File.basename(f) }
|
|
17
19
|
gem.test_files = gem.files.grep(%r{^(test|spec|features)/})
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: pact
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.9.
|
|
4
|
+
version: 1.9.3
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- James Fraser
|
|
@@ -12,7 +12,7 @@ authors:
|
|
|
12
12
|
autorequire:
|
|
13
13
|
bindir: bin
|
|
14
14
|
cert_chain: []
|
|
15
|
-
date: 2016-
|
|
15
|
+
date: 2016-06-27 00:00:00.000000000 Z
|
|
16
16
|
dependencies:
|
|
17
17
|
- !ruby/object:Gem::Dependency
|
|
18
18
|
name: randexp
|
|
@@ -367,7 +367,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
|
367
367
|
requirements:
|
|
368
368
|
- - ">="
|
|
369
369
|
- !ruby/object:Gem::Version
|
|
370
|
-
version: '0'
|
|
370
|
+
version: '2.0'
|
|
371
371
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
372
372
|
requirements:
|
|
373
373
|
- - ">="
|