support_utils 0.1.2 → 0.2.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/lib/support_utils/all.rb +5 -0
- data/lib/support_utils/concerns/pub_sub/publisher.rb +44 -0
- data/lib/support_utils/concerns/pub_sub/subscriber.rb +38 -0
- data/lib/support_utils/pub_sub/publishers/base.rb +9 -0
- data/lib/support_utils/pub_sub/subscribers/base.rb +9 -0
- data/lib/support_utils/version.rb +1 -1
- data/test/dummy/db/test.sqlite3 +0 -0
- data/test/dummy/log/test.log +1093 -24652
- metadata +6 -2
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: support_utils
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.2.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Emilio Forrer
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2015-05-
|
11
|
+
date: 2015-05-22 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: rails
|
@@ -144,9 +144,13 @@ files:
|
|
144
144
|
- lib/support_utils.rb
|
145
145
|
- lib/support_utils/all.rb
|
146
146
|
- lib/support_utils/concerns/core.rb
|
147
|
+
- lib/support_utils/concerns/pub_sub/publisher.rb
|
148
|
+
- lib/support_utils/concerns/pub_sub/subscriber.rb
|
147
149
|
- lib/support_utils/concerns/utils.rb
|
148
150
|
- lib/support_utils/core/active_record/utils.rb
|
149
151
|
- lib/support_utils/engine.rb
|
152
|
+
- lib/support_utils/pub_sub/publishers/base.rb
|
153
|
+
- lib/support_utils/pub_sub/subscribers/base.rb
|
150
154
|
- lib/support_utils/version.rb
|
151
155
|
- lib/tasks/support_utils_tasks.rake
|
152
156
|
- test/dummy/README.rdoc
|