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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: e093289ff5402c4c385172a8d2c513bbae070ebc
4
- data.tar.gz: fc66782fab170c7e599cffe63a62289f0dd2886c
3
+ metadata.gz: 5bdfdb80c20192a320cfba7c8c86ca1b71b831f8
4
+ data.tar.gz: e2da1b7f6e1181082e6c05502ad3cbdef581bd02
5
5
  SHA512:
6
- metadata.gz: 49923503b12820460bea10fc96ffa6e17aa9fda4768262eaed548950e194fa5980008c3e8fc882b39d4107680b67d3a3c892c507326d4fda697620850cead2ee
7
- data.tar.gz: be961aae1a3fa06e517fa10bdafeb652421928d9e49f343a8ecb895a6bb403922446b8d8aef05b17a73ac9eb8ee4e38d8bab4649c5a9f3665e74067c148f3099
6
+ metadata.gz: 7b94f7f428d2bbe4bb41894098db6e163a920a992054897b6abf892e21834475f94df51bc17a6b62d4968ecc016e2cbba8d7949fe6a06c5adfbcb979743d6598
7
+ data.tar.gz: 576e8733063342095713210548edea910ebebb824265e6d48aa3a44d439da307fd3329f6f27e0526411616948540a31e64feae8bfd53e14c72e61e89c5da1673
data/CHANGELOG CHANGED
@@ -1,3 +1,9 @@
1
+ *0.1.5* (March 10, 2016)
2
+
3
+ * Add the MIT LICENSE
4
+ * Add version badge to README
5
+ * Update summary in .gemspec
6
+
1
7
  *0.1.4* (March 10, 2016)
2
8
 
3
9
  * Update README to make it clear about ActiveResource
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
@@ -1,6 +1,8 @@
1
1
  # Stubsvc
2
2
 
3
- **Version: 0.1.4**
3
+ [![Gem Version](https://badge.fury.io/rb/stubsvc.svg)](https://badge.fury.io/rb/stubsvc)
4
+
5
+ **Version: 0.1.5**
4
6
 
5
7
  Stub calls to ActiveResource based web services using [Webmock](https://github.com/bblimke/webmock).
6
8
 
@@ -1,3 +1,3 @@
1
1
  module Stubsvc
2
- VERSION = "0.1.4"
2
+ VERSION = "0.1.5"
3
3
  end
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 = 'Stub out calls to external web services.'
13
- spec.description = <<-stop
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
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: |2
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: Stub out calls to external web services.
225
+ summary: Detministically stub out calls to ActiveResource web services.
226
226
  test_files: []