stubsvc 0.1.4 → 0.1.5
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG +6 -0
- data/LICENSE +18 -0
- data/README.md +3 -1
- data/lib/stubsvc/version.rb +1 -1
- data/stubsvc.gemspec +2 -4
- metadata +4 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 5bdfdb80c20192a320cfba7c8c86ca1b71b831f8
|
4
|
+
data.tar.gz: e2da1b7f6e1181082e6c05502ad3cbdef581bd02
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 7b94f7f428d2bbe4bb41894098db6e163a920a992054897b6abf892e21834475f94df51bc17a6b62d4968ecc016e2cbba8d7949fe6a06c5adfbcb979743d6598
|
7
|
+
data.tar.gz: 576e8733063342095713210548edea910ebebb824265e6d48aa3a44d439da307fd3329f6f27e0526411616948540a31e64feae8bfd53e14c72e61e89c5da1673
|
data/CHANGELOG
CHANGED
data/LICENSE
ADDED
@@ -0,0 +1,18 @@
|
|
1
|
+
Copyright (c) 2015 Chris Blackburn
|
2
|
+
|
3
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy of
|
4
|
+
this software and associated documentation files (the "Software"), to deal in
|
5
|
+
the Software without restriction, including without limitation the rights to
|
6
|
+
use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
|
7
|
+
the Software, and to permit persons to whom the Software is furnished to do so,
|
8
|
+
subject to the following conditions:
|
9
|
+
|
10
|
+
The above copyright notice and this permission notice shall be included in all
|
11
|
+
copies or substantial portions of the Software.
|
12
|
+
|
13
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
14
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
|
15
|
+
FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
|
16
|
+
COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
|
17
|
+
IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
|
18
|
+
CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
data/README.md
CHANGED
data/lib/stubsvc/version.rb
CHANGED
data/stubsvc.gemspec
CHANGED
@@ -9,10 +9,8 @@ Gem::Specification.new do |spec|
|
|
9
9
|
spec.authors = ['Chris Blackburn']
|
10
10
|
spec.email = ['205abc7e@opayq.com']
|
11
11
|
|
12
|
-
spec.summary = '
|
13
|
-
spec.description =
|
14
|
-
A Ruby gem that makes it easy to stub out calls to external web services using Webmock.
|
15
|
-
stop
|
12
|
+
spec.summary = 'Detministically stub out calls to ActiveResource web services.'
|
13
|
+
spec.description = spec.summary
|
16
14
|
spec.homepage = 'https://bitbucket.org/midwiretech/stubsvc/overview'
|
17
15
|
|
18
16
|
spec.files = `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: stubsvc
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1.
|
4
|
+
version: 0.1.5
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Chris Blackburn
|
@@ -178,8 +178,7 @@ dependencies:
|
|
178
178
|
- - "~>"
|
179
179
|
- !ruby/object:Gem::Version
|
180
180
|
version: '1.6'
|
181
|
-
description:
|
182
|
-
A Ruby gem that makes it easy to stub out calls to external web services using Webmock.
|
181
|
+
description: Detministically stub out calls to ActiveResource web services.
|
183
182
|
email:
|
184
183
|
- 205abc7e@opayq.com
|
185
184
|
executables: []
|
@@ -192,6 +191,7 @@ files:
|
|
192
191
|
- ".travis.yml"
|
193
192
|
- CHANGELOG
|
194
193
|
- Gemfile
|
194
|
+
- LICENSE
|
195
195
|
- README.md
|
196
196
|
- Rakefile
|
197
197
|
- bin/console
|
@@ -222,5 +222,5 @@ rubyforge_project:
|
|
222
222
|
rubygems_version: 2.4.5.1
|
223
223
|
signing_key:
|
224
224
|
specification_version: 4
|
225
|
-
summary:
|
225
|
+
summary: Detministically stub out calls to ActiveResource web services.
|
226
226
|
test_files: []
|