Skip to content

Commit 6addd61

Browse files
committed
Initial commit
0 parents  commit 6addd61

File tree

77 files changed

+3666
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

77 files changed

+3666
-0
lines changed

.gitignore

+29
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
*.gem
2+
*.rbc
3+
.bundle
4+
.config
5+
.yardoc
6+
InstalledFiles
7+
_yardoc
8+
coverage
9+
lib/bundler/man
10+
pkg
11+
rdoc
12+
spec/reports
13+
test/tmp
14+
test/version_tmp
15+
tmp
16+
*.swp
17+
.bin
18+
tags
19+
.rbenv-version
20+
spec/pacts
21+
.rvmrc
22+
*.iml
23+
.rakeTasks
24+
*~
25+
.ruby-gemset
26+
.ruby-version
27+
log
28+
.idea
29+
reports

.rspec

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
--color
2+
--format documentation

CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
Do this to generate your change history
2+
3+
git log --pretty=format:' * %h - %s (%an, %ad)'
4+

Gemfile

+6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
source 'https://rubygems.org'
2+
3+
# Specify your gem's dependencies in pact.gemspec
4+
gemspec
5+
6+
gem 'pact-support', path: '../pact-support'

Gemfile.lock

+100
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,100 @@
1+
PATH
2+
remote: .
3+
specs:
4+
pact-mock_service (1.3.3)
5+
awesome_print (~> 1.1)
6+
find_a_port (~> 1.0.1)
7+
json
8+
rack
9+
rack-test (~> 0.6.2)
10+
rspec (>= 2.14)
11+
term-ansicolor (~> 1.0)
12+
thor
13+
webrick
14+
15+
PATH
16+
remote: ../pact-support
17+
specs:
18+
pact-support (0.0.1)
19+
awesome_print (~> 1.1)
20+
find_a_port (~> 1.0.1)
21+
json
22+
rack-test (~> 0.6.2)
23+
randexp (~> 0.1.7)
24+
rspec (>= 2.14)
25+
term-ansicolor (~> 1.0)
26+
thor
27+
28+
GEM
29+
remote: https://rubygems.org/
30+
specs:
31+
activesupport (4.1.1)
32+
i18n (~> 0.6, >= 0.6.9)
33+
json (~> 1.7, >= 1.7.7)
34+
minitest (~> 5.1)
35+
thread_safe (~> 0.1)
36+
tzinfo (~> 1.1)
37+
addressable (2.3.6)
38+
awesome_print (1.2.0)
39+
coderay (1.1.0)
40+
crack (0.4.2)
41+
safe_yaml (~> 1.0.0)
42+
diff-lcs (1.2.5)
43+
fakefs (0.5.2)
44+
faraday (0.9.0)
45+
multipart-post (>= 1.2, < 3)
46+
find_a_port (1.0.1)
47+
hashie (2.1.1)
48+
i18n (0.6.9)
49+
json (1.8.1)
50+
method_source (0.8.2)
51+
minitest (5.3.4)
52+
multipart-post (2.0.0)
53+
pry (0.10.0)
54+
coderay (~> 1.1.0)
55+
method_source (~> 0.8.1)
56+
slop (~> 3.4)
57+
rack (1.5.2)
58+
rack-test (0.6.2)
59+
rack (>= 1.0)
60+
rake (10.0.4)
61+
randexp (0.1.7)
62+
rspec (3.1.0)
63+
rspec-core (~> 3.1.0)
64+
rspec-expectations (~> 3.1.0)
65+
rspec-mocks (~> 3.1.0)
66+
rspec-core (3.1.6)
67+
rspec-support (~> 3.1.0)
68+
rspec-expectations (3.1.2)
69+
diff-lcs (>= 1.2.0, < 2.0)
70+
rspec-support (~> 3.1.0)
71+
rspec-mocks (3.1.3)
72+
rspec-support (~> 3.1.0)
73+
rspec-support (3.1.2)
74+
safe_yaml (1.0.3)
75+
slop (3.5.0)
76+
term-ansicolor (1.3.0)
77+
tins (~> 1.0)
78+
thor (0.19.1)
79+
thread_safe (0.3.4)
80+
tins (1.3.3)
81+
tzinfo (1.2.1)
82+
thread_safe (~> 0.1)
83+
webmock (1.18.0)
84+
addressable (>= 2.3.6)
85+
crack (>= 0.3.2)
86+
webrick (1.3.1)
87+
88+
PLATFORMS
89+
ruby
90+
91+
DEPENDENCIES
92+
activesupport
93+
fakefs (~> 0.4)
94+
faraday
95+
hashie (~> 2.0)
96+
pact-mock_service!
97+
pact-support!
98+
pry
99+
rake (~> 10.0.3)
100+
webmock (~> 1.18.0)

LICENSE.txt

+22
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
Copyright (c) 2013 James Fraser, Sergei Matheson, Brent Snook, Ronald Holshausen, Beth Skurrie
2+
3+
MIT License
4+
5+
Permission is hereby granted, free of charge, to any person obtaining
6+
a copy of this software and associated documentation files (the
7+
"Software"), to deal in the Software without restriction, including
8+
without limitation the rights to use, copy, modify, merge, publish,
9+
distribute, sublicense, and/or sell copies of the Software, and to
10+
permit persons to whom the Software is furnished to do so, subject to
11+
the following conditions:
12+
13+
The above copyright notice and this permission notice shall be
14+
included in all copies or substantial portions of the Software.
15+
16+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
17+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
18+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
19+
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
20+
LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
21+
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
22+
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

0 commit comments

Comments
 (0)