totoro 1.0.3 → 1.0.4
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 +32 -3
- data/README.md +1 -0
- data/lib/generators/totoro/templates/totoro.yml +1 -0
- data/lib/totoro/config.rb +4 -0
- data/lib/totoro/services/subscribe_service.rb +1 -0
- data/lib/totoro/version.rb +1 -1
- data/totoro.gemspec +2 -2
- metadata +4 -5
- data/pkg/totoro-1.0.3.gem +0 -0
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 7f4c7f10ea818adbe2fa42308e54e93572e70a714d744e7e71429af98fd7dbcc
|
4
|
+
data.tar.gz: 9168aa729f1f0aab8eb64da8b0475e9a272990d0ca7744b65f4fb5d70dcdeba3
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: a00e4ebd5d2eb76ff624e8fdf7ceda3aaa4a3f50484651d74f1b63ab3bc5163212e85cd0cce0039d6678b827df86468c598d4277bd70b8c29982f32e6c7e911a
|
7
|
+
data.tar.gz: 518fd37374c5fbff31b67ecadc1a2a3bd96de078de5811e6abee644dcceb7f906380809b710ed50bcd8925d2a2596265d242749ed2d491f197cd566bd0e36cf1
|
data/Gemfile.lock
CHANGED
@@ -1,16 +1,42 @@
|
|
1
1
|
PATH
|
2
2
|
remote: .
|
3
3
|
specs:
|
4
|
-
totoro (0.4
|
4
|
+
totoro (1.0.4)
|
5
5
|
bunny (~> 2.10)
|
6
|
+
delayed_job_active_record (~> 4.1.3)
|
7
|
+
delayed_job_recurring (~> 0.3.7)
|
6
8
|
|
7
9
|
GEM
|
8
10
|
remote: https://rubygems.org/
|
9
11
|
specs:
|
12
|
+
activemodel (5.2.2)
|
13
|
+
activesupport (= 5.2.2)
|
14
|
+
activerecord (5.2.2)
|
15
|
+
activemodel (= 5.2.2)
|
16
|
+
activesupport (= 5.2.2)
|
17
|
+
arel (>= 9.0)
|
18
|
+
activesupport (5.2.2)
|
19
|
+
concurrent-ruby (~> 1.0, >= 1.0.2)
|
20
|
+
i18n (>= 0.7, < 2)
|
21
|
+
minitest (~> 5.1)
|
22
|
+
tzinfo (~> 1.1)
|
10
23
|
amq-protocol (2.3.0)
|
11
|
-
|
12
|
-
|
24
|
+
arel (9.0.0)
|
25
|
+
bunny (2.13.0)
|
26
|
+
amq-protocol (~> 2.3, >= 2.3.0)
|
27
|
+
concurrent-ruby (1.1.4)
|
28
|
+
delayed_job (4.1.5)
|
29
|
+
activesupport (>= 3.0, < 5.3)
|
30
|
+
delayed_job_active_record (4.1.3)
|
31
|
+
activerecord (>= 3.0, < 5.3)
|
32
|
+
delayed_job (>= 3.0, < 5)
|
33
|
+
delayed_job_recurring (0.3.8)
|
34
|
+
delayed_job (>= 3.0)
|
35
|
+
delayed_job_active_record
|
13
36
|
diff-lcs (1.3)
|
37
|
+
i18n (1.5.3)
|
38
|
+
concurrent-ruby (~> 1.0)
|
39
|
+
minitest (5.11.3)
|
14
40
|
rake (10.5.0)
|
15
41
|
rspec (3.7.0)
|
16
42
|
rspec-core (~> 3.7.0)
|
@@ -25,6 +51,9 @@ GEM
|
|
25
51
|
diff-lcs (>= 1.2.0, < 2.0)
|
26
52
|
rspec-support (~> 3.7.0)
|
27
53
|
rspec-support (3.7.1)
|
54
|
+
thread_safe (0.3.6)
|
55
|
+
tzinfo (1.2.5)
|
56
|
+
thread_safe (~> 0.1)
|
28
57
|
|
29
58
|
PLATFORMS
|
30
59
|
ruby
|
data/README.md
CHANGED
data/lib/totoro/config.rb
CHANGED
data/lib/totoro/version.rb
CHANGED
data/totoro.gemspec
CHANGED
@@ -7,8 +7,8 @@ require 'totoro/version'
|
|
7
7
|
Gem::Specification.new do |spec|
|
8
8
|
spec.name = 'totoro'
|
9
9
|
spec.version = Totoro::VERSION
|
10
|
-
spec.authors = ['
|
11
|
-
spec.email = ['
|
10
|
+
spec.authors = ['BlockchainTech']
|
11
|
+
spec.email = ['cex.demo@blockchaintech.net.au']
|
12
12
|
|
13
13
|
spec.summary = 'tool for rabbitmq'
|
14
14
|
spec.description = 'Enpower rabbitmq to make it configrable'
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: totoro
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.0.
|
4
|
+
version: 1.0.4
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
|
-
-
|
7
|
+
- BlockchainTech
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2019-
|
11
|
+
date: 2019-02-14 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: bunny
|
@@ -96,7 +96,7 @@ dependencies:
|
|
96
96
|
version: '3.0'
|
97
97
|
description: Enpower rabbitmq to make it configrable
|
98
98
|
email:
|
99
|
-
-
|
99
|
+
- cex.demo@blockchaintech.net.au
|
100
100
|
executables:
|
101
101
|
- totoro
|
102
102
|
extensions: []
|
@@ -139,7 +139,6 @@ files:
|
|
139
139
|
- lib/totoro/tasks/resend_message.rake
|
140
140
|
- lib/totoro/utils.rb
|
141
141
|
- lib/totoro/version.rb
|
142
|
-
- pkg/totoro-1.0.3.gem
|
143
142
|
- spec/spec_helper.rb
|
144
143
|
- spec/totoro_spec.rb
|
145
144
|
- test/rabbitmq_commands.txt
|
data/pkg/totoro-1.0.3.gem
DELETED
Binary file
|