pact-support 0.6.0 → 0.6.1

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 563b924005bc26322d374fe14dfbbd4a5e1b9512
4
- data.tar.gz: 709ff4ddd7ef76fec9054be1e95aa3bcc26fc7af
3
+ metadata.gz: beef3d8d0aee405fd146512cfb49cb23b4bedadc
4
+ data.tar.gz: 72981776fd3ec194c9ce6bb7017a828413159cd9
5
5
  SHA512:
6
- metadata.gz: bf61f47a0ecf8c6b90f9f7f7ab6bf6a4ea64bc1ba136400adb291ba91cf3fa123d8f4272152de0df261ba92df7612743a1f00e4fe1b09946bed54ba93063fe63
7
- data.tar.gz: dba94a800b1809bca6f1d34a0ff25749f7d8aec500f1edb02ba5c2569dd6a9d89f1d93c64249aa8e211ac5bd26b5607fb16b47ca4572d398bc8a32dfa0d83ce8
6
+ metadata.gz: 2208542c71eca13d8c3bba7c78eec7c2a6fd478df0ca4ef63e70cfccb1a9bd17068513025bef9b6576962a74a35827080fd696d1d6bf77fa18b6f311b5b0dc8c
7
+ data.tar.gz: 40931117ebafad7d43968eea34375b893b08336c894f7e1cb6da5f7660263f8e86c3b953970cfe463fce7ca18f2bf7bf25f7418ea380db9d9d38c4e487474411
@@ -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
+ ### 0.6.1 (10 Mar 2017)
6
+ * 4627b56 - Explicit require of CGI class. (Tan Le, Thu Mar 9 17:01:37 2017 +1100)
7
+ * 26b6678 - Added colon support to matching rules path. (soundstep, Wed Mar 8 09:18:35 2017 +0000)
8
+
5
9
  ### 0.6.0 (14 Nov 2016)
6
10
  * 64a9a37 - Enable interactions to validate themselves (Taiki Ono, Wed Nov 9 19:08:49 2016 +0900)
7
11
 
@@ -1,3 +1,4 @@
1
+ require 'cgi'
1
2
  require 'pact/shared/active_support_support'
2
3
  require 'pact/matchers'
3
4
  require 'pact/symbolize_keys'
@@ -19,7 +19,7 @@ module Pact
19
19
  @path << token
20
20
  elsif token = scanner.scan(/@/)
21
21
  @path << token
22
- elsif token = scanner.scan(/[a-zA-Z0-9_-]+/)
22
+ elsif token = scanner.scan(/[:a-zA-Z0-9_-]+/)
23
23
  @path << "['#{token}']"
24
24
  elsif token = scanner.scan(/'(.*?)'/)
25
25
  @path << "[#{token}]"
@@ -57,4 +57,3 @@ module Pact
57
57
  end
58
58
  end
59
59
  end
60
-
@@ -1,5 +1,5 @@
1
1
  module Pact
2
2
  module Support
3
- VERSION = "0.6.0"
3
+ VERSION = "0.6.1"
4
4
  end
5
5
  end
@@ -1,12 +1,9 @@
1
- require 'rspec'
2
1
  require 'fakefs/spec_helpers'
3
- require 'rspec'
4
2
  require 'pact/support'
5
3
  require 'webmock/rspec'
6
4
  require 'support/factories'
7
5
  require 'support/spec_support'
8
6
 
9
-
10
7
  WebMock.disable_net_connect!(allow_localhost: true)
11
8
 
12
9
  require './spec/support/active_support_if_configured'
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: pact-support
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.6.0
4
+ version: 0.6.1
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-11-13 00:00:00.000000000 Z
15
+ date: 2017-03-11 00:00:00.000000000 Z
16
16
  dependencies:
17
17
  - !ruby/object:Gem::Dependency
18
18
  name: randexp