bunny_hop 0.1.0 → 0.1.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/Gemfile.lock +38 -0
- data/README.md +2 -3
- data/lib/bunny_hop/version.rb +2 -2
- metadata +3 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: c41c5dcf95b71f798f7462c5ff729e197e0cbcf1deeb2b1e22b6d85324ef8e02
|
|
4
|
+
data.tar.gz: 3006816d01b6a79ea69402d2c6d8a770221e9a8e2d3bf9395e8b53b6dd69210d
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 9bfa2791f11b6527bdc12aa65142684cff8e8c288f6596a0e69c13be6c36efb3f1815d1546b427202882a0420f8d07c5cf985d91c56640d0af8b1c518de0d39c
|
|
7
|
+
data.tar.gz: 325a4ee9479e8364e555e1f00616b7cd380d318db5f4479f440bc76a8ae9d1cd1f62c5604a98ac13433b6815413ab710681dc71c79efa7d3c5365c5b304fa528
|
data/Gemfile.lock
ADDED
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
PATH
|
|
2
|
+
remote: .
|
|
3
|
+
specs:
|
|
4
|
+
bunny_hop (0.1.1)
|
|
5
|
+
bunny (>= 2.14.1)
|
|
6
|
+
|
|
7
|
+
GEM
|
|
8
|
+
remote: https://rubygems.org/
|
|
9
|
+
specs:
|
|
10
|
+
amq-protocol (2.3.1)
|
|
11
|
+
bunny (2.15.0)
|
|
12
|
+
amq-protocol (~> 2.3, >= 2.3.1)
|
|
13
|
+
diff-lcs (1.3)
|
|
14
|
+
rake (12.3.3)
|
|
15
|
+
rspec (3.9.0)
|
|
16
|
+
rspec-core (~> 3.9.0)
|
|
17
|
+
rspec-expectations (~> 3.9.0)
|
|
18
|
+
rspec-mocks (~> 3.9.0)
|
|
19
|
+
rspec-core (3.9.2)
|
|
20
|
+
rspec-support (~> 3.9.3)
|
|
21
|
+
rspec-expectations (3.9.2)
|
|
22
|
+
diff-lcs (>= 1.2.0, < 2.0)
|
|
23
|
+
rspec-support (~> 3.9.0)
|
|
24
|
+
rspec-mocks (3.9.1)
|
|
25
|
+
diff-lcs (>= 1.2.0, < 2.0)
|
|
26
|
+
rspec-support (~> 3.9.0)
|
|
27
|
+
rspec-support (3.9.3)
|
|
28
|
+
|
|
29
|
+
PLATFORMS
|
|
30
|
+
ruby
|
|
31
|
+
|
|
32
|
+
DEPENDENCIES
|
|
33
|
+
bunny_hop!
|
|
34
|
+
rake (~> 12.0)
|
|
35
|
+
rspec (~> 3.0)
|
|
36
|
+
|
|
37
|
+
BUNDLED WITH
|
|
38
|
+
2.1.4
|
data/README.md
CHANGED
|
@@ -1,8 +1,7 @@
|
|
|
1
1
|
# BunnyHop
|
|
2
2
|
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
TODO: Delete this and the text above, and describe your gem
|
|
3
|
+
Concept of RPC with bunny gem.
|
|
4
|
+
This gem is under development.
|
|
6
5
|
|
|
7
6
|
## Installation
|
|
8
7
|
|
data/lib/bunny_hop/version.rb
CHANGED
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
|
|
2
|
-
VERSION = "0.1.
|
|
1
|
+
class BunnyHop
|
|
2
|
+
VERSION = "0.1.1"
|
|
3
3
|
end
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: bunny_hop
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.1.
|
|
4
|
+
version: 0.1.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- btolarz
|
|
@@ -36,6 +36,7 @@ files:
|
|
|
36
36
|
- ".travis.yml"
|
|
37
37
|
- CODE_OF_CONDUCT.md
|
|
38
38
|
- Gemfile
|
|
39
|
+
- Gemfile.lock
|
|
39
40
|
- LICENSE.txt
|
|
40
41
|
- README.md
|
|
41
42
|
- Rakefile
|
|
@@ -66,7 +67,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
66
67
|
- !ruby/object:Gem::Version
|
|
67
68
|
version: '0'
|
|
68
69
|
requirements: []
|
|
69
|
-
rubygems_version: 3.1.
|
|
70
|
+
rubygems_version: 3.1.4
|
|
70
71
|
signing_key:
|
|
71
72
|
specification_version: 4
|
|
72
73
|
summary: Write a short summary, because RubyGems requires one.
|