omnes 0.1.0 → 0.2.2
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.github/workflows/test.yml +1 -1
- data/.gitignore +1 -0
- data/.rubocop.yml +2 -2
- data/CHANGELOG.md +25 -1
- data/README.md +134 -27
- data/lib/omnes/bus.rb +55 -13
- data/lib/omnes/configurable.rb +108 -0
- data/lib/omnes/errors.rb +39 -1
- data/lib/omnes/event.rb +2 -2
- data/lib/omnes/publication.rb +5 -14
- data/lib/omnes/publication_context.rb +41 -0
- data/lib/omnes/subscriber/adapter/active_job.rb +10 -6
- data/lib/omnes/subscriber/adapter/method.rb +2 -2
- data/lib/omnes/subscriber/adapter/sidekiq.rb +22 -8
- data/lib/omnes/subscriber/adapter.rb +6 -0
- data/lib/omnes/subscriber/state.rb +29 -12
- data/lib/omnes/subscriber.rb +14 -12
- data/lib/omnes/subscription.rb +25 -4
- data/lib/omnes/version.rb +1 -1
- data/lib/omnes.rb +10 -37
- data/omnes.gemspec +2 -4
- metadata +13 -26
- data/Gemfile.lock +0 -92
data/Gemfile.lock
DELETED
@@ -1,92 +0,0 @@
|
|
1
|
-
PATH
|
2
|
-
remote: .
|
3
|
-
specs:
|
4
|
-
omnes (0.1.0)
|
5
|
-
dry-configurable (~> 0.14)
|
6
|
-
|
7
|
-
GEM
|
8
|
-
remote: https://rubygems.org/
|
9
|
-
specs:
|
10
|
-
activejob (7.0.2.3)
|
11
|
-
activesupport (= 7.0.2.3)
|
12
|
-
globalid (>= 0.3.6)
|
13
|
-
activesupport (7.0.2.3)
|
14
|
-
concurrent-ruby (~> 1.0, >= 1.0.2)
|
15
|
-
i18n (>= 1.6, < 2)
|
16
|
-
minitest (>= 5.1)
|
17
|
-
tzinfo (~> 2.0)
|
18
|
-
ast (2.4.2)
|
19
|
-
concurrent-ruby (1.1.9)
|
20
|
-
connection_pool (2.2.5)
|
21
|
-
diff-lcs (1.5.0)
|
22
|
-
dry-configurable (0.14.0)
|
23
|
-
concurrent-ruby (~> 1.0)
|
24
|
-
dry-core (~> 0.6)
|
25
|
-
dry-core (0.7.1)
|
26
|
-
concurrent-ruby (~> 1.0)
|
27
|
-
globalid (1.0.0)
|
28
|
-
activesupport (>= 5.0)
|
29
|
-
i18n (1.10.0)
|
30
|
-
concurrent-ruby (~> 1.0)
|
31
|
-
minitest (5.15.0)
|
32
|
-
parallel (1.21.0)
|
33
|
-
parser (3.1.1.0)
|
34
|
-
ast (~> 2.4.1)
|
35
|
-
rack (2.2.3)
|
36
|
-
rainbow (3.1.1)
|
37
|
-
rake (12.3.3)
|
38
|
-
redcarpet (3.5.1)
|
39
|
-
redis (4.6.0)
|
40
|
-
regexp_parser (2.2.1)
|
41
|
-
rexml (3.2.5)
|
42
|
-
rspec (3.11.0)
|
43
|
-
rspec-core (~> 3.11.0)
|
44
|
-
rspec-expectations (~> 3.11.0)
|
45
|
-
rspec-mocks (~> 3.11.0)
|
46
|
-
rspec-core (3.11.0)
|
47
|
-
rspec-support (~> 3.11.0)
|
48
|
-
rspec-expectations (3.11.0)
|
49
|
-
diff-lcs (>= 1.2.0, < 2.0)
|
50
|
-
rspec-support (~> 3.11.0)
|
51
|
-
rspec-mocks (3.11.0)
|
52
|
-
diff-lcs (>= 1.2.0, < 2.0)
|
53
|
-
rspec-support (~> 3.11.0)
|
54
|
-
rspec-support (3.11.0)
|
55
|
-
rubocop (1.25.1)
|
56
|
-
parallel (~> 1.10)
|
57
|
-
parser (>= 3.1.0.0)
|
58
|
-
rainbow (>= 2.2.2, < 4.0)
|
59
|
-
regexp_parser (>= 1.8, < 3.0)
|
60
|
-
rexml
|
61
|
-
rubocop-ast (>= 1.15.1, < 2.0)
|
62
|
-
ruby-progressbar (~> 1.7)
|
63
|
-
unicode-display_width (>= 1.4.0, < 3.0)
|
64
|
-
rubocop-ast (1.16.0)
|
65
|
-
parser (>= 3.1.1.0)
|
66
|
-
ruby-progressbar (1.11.0)
|
67
|
-
sidekiq (6.4.1)
|
68
|
-
connection_pool (>= 2.2.2)
|
69
|
-
rack (~> 2.0)
|
70
|
-
redis (>= 4.2.0)
|
71
|
-
tzinfo (2.0.4)
|
72
|
-
concurrent-ruby (~> 1.0)
|
73
|
-
unicode-display_width (2.1.0)
|
74
|
-
webrick (1.7.0)
|
75
|
-
yard (0.9.27)
|
76
|
-
webrick (~> 1.7.0)
|
77
|
-
|
78
|
-
PLATFORMS
|
79
|
-
x86_64-linux
|
80
|
-
|
81
|
-
DEPENDENCIES
|
82
|
-
activejob (~> 7.0)
|
83
|
-
omnes!
|
84
|
-
rake (~> 12.0)
|
85
|
-
redcarpet (~> 3.5)
|
86
|
-
rspec (~> 3.0)
|
87
|
-
rubocop (~> 1.25)
|
88
|
-
sidekiq (~> 6.4)
|
89
|
-
yard (~> 0.9)
|
90
|
-
|
91
|
-
BUNDLED WITH
|
92
|
-
2.2.3
|