protobuf-rspec 1.1.3 → 1.1.4
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/LICENSE.txt +22 -0
- data/lib/protobuf/rspec/version.rb +1 -1
- data/protobuf-rspec.gemspec +1 -0
- metadata +6 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 35e2e050b5901e6bdd9f0ae16318e58eb4ce232e
|
4
|
+
data.tar.gz: b7822f3e6b4c3cc34e7e8c833a1eb46428299dbc
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 5b3e7be906f1fd2547793b32605c0d7dfd2f9afa8cf66a2010ca9bbb2f1113f95c8e79454f693a312ae8cdd5aed66feeb20cee099eed24f9ac05717725895673
|
7
|
+
data.tar.gz: e97092db0546d3d6ca3b391b2da5d61117283ecf754afbe11496eca6d917ed950721d7cfcaf18af6cdb383bf3c0a7a5f2b88cb590e5fd75c0ca2caec863248b0
|
data/LICENSE.txt
ADDED
@@ -0,0 +1,22 @@
|
|
1
|
+
Copyright (c) 2017 Brandon Dewitt
|
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.
|
data/protobuf-rspec.gemspec
CHANGED
@@ -10,6 +10,7 @@ Gem::Specification.new do |s|
|
|
10
10
|
s.homepage = "http://github.com/localshred/protobuf-rspec"
|
11
11
|
s.summary = %q{Protobuf RSpec helpers for testing services and clients. Meant to be used with the protobuf gem. Decouple external services/clients from each other using the given helper methods.}
|
12
12
|
s.description = s.summary
|
13
|
+
s.license = "MIT"
|
13
14
|
|
14
15
|
s.rubyforge_project = "protobuf-rspec"
|
15
16
|
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: protobuf-rspec
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.1.
|
4
|
+
version: 1.1.4
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- BJ Neilsen
|
@@ -9,7 +9,7 @@ authors:
|
|
9
9
|
autorequire:
|
10
10
|
bindir: bin
|
11
11
|
cert_chain: []
|
12
|
-
date:
|
12
|
+
date: 2018-10-03 00:00:00.000000000 Z
|
13
13
|
dependencies:
|
14
14
|
- !ruby/object:Gem::Dependency
|
15
15
|
name: protobuf
|
@@ -71,6 +71,7 @@ extra_rdoc_files: []
|
|
71
71
|
files:
|
72
72
|
- ".gitignore"
|
73
73
|
- Gemfile
|
74
|
+
- LICENSE.txt
|
74
75
|
- README.md
|
75
76
|
- Rakefile
|
76
77
|
- lib/protobuf/rspec.rb
|
@@ -78,7 +79,8 @@ files:
|
|
78
79
|
- lib/protobuf/rspec/version.rb
|
79
80
|
- protobuf-rspec.gemspec
|
80
81
|
homepage: http://github.com/localshred/protobuf-rspec
|
81
|
-
licenses:
|
82
|
+
licenses:
|
83
|
+
- MIT
|
82
84
|
metadata: {}
|
83
85
|
post_install_message:
|
84
86
|
rdoc_options: []
|
@@ -96,7 +98,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
96
98
|
version: '0'
|
97
99
|
requirements: []
|
98
100
|
rubyforge_project: protobuf-rspec
|
99
|
-
rubygems_version: 2.
|
101
|
+
rubygems_version: 2.6.14
|
100
102
|
signing_key:
|
101
103
|
specification_version: 4
|
102
104
|
summary: Protobuf RSpec helpers for testing services and clients. Meant to be used
|