active_delivery 1.1.0 → 1.2.0
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/CHANGELOG.md +4 -0
- data/README.md +53 -21
- data/lib/.rbnext/3.0/abstract_notifier/async_adapters/active_job.rb +2 -2
- data/lib/.rbnext/3.0/abstract_notifier/base.rb +4 -4
- data/lib/.rbnext/3.0/active_delivery/base.rb +8 -8
- data/lib/.rbnext/3.0/active_delivery/lines/base.rb +4 -4
- data/lib/.rbnext/3.0/active_delivery/testing/minitest.rb +58 -0
- data/lib/.rbnext/3.0/active_delivery/testing.rb +1 -0
- data/lib/.rbnext/3.1/abstract_notifier/async_adapters/active_job.rb +2 -2
- data/lib/.rbnext/3.1/abstract_notifier/base.rb +4 -4
- data/lib/.rbnext/3.1/active_delivery/base.rb +8 -8
- data/lib/.rbnext/3.1/active_delivery/lines/base.rb +4 -4
- data/lib/.rbnext/3.1/active_delivery/testing/minitest.rb +58 -0
- data/lib/.rbnext/3.2/abstract_notifier/async_adapters/active_job.rb +36 -0
- data/lib/.rbnext/3.2/abstract_notifier/base.rb +223 -0
- data/lib/.rbnext/3.2/abstract_notifier/testing/rspec.rb +164 -0
- data/lib/.rbnext/3.2/abstract_notifier/testing.rb +53 -0
- data/lib/.rbnext/3.2/active_delivery/base.rb +249 -0
- data/lib/.rbnext/3.2/active_delivery/lines/base.rb +101 -0
- data/lib/.rbnext/3.2/active_delivery/lines/notifier.rb +57 -0
- data/lib/.rbnext/3.2/active_delivery/testing/rspec.rb +222 -0
- data/lib/abstract_notifier/async_adapters/active_job.rb +2 -2
- data/lib/abstract_notifier/base.rb +4 -4
- data/lib/abstract_notifier/testing/minitest.rb +1 -1
- data/lib/abstract_notifier/testing/rspec.rb +4 -4
- data/lib/abstract_notifier/testing.rb +2 -2
- data/lib/active_delivery/base.rb +8 -8
- data/lib/active_delivery/lines/base.rb +4 -4
- data/lib/active_delivery/lines/notifier.rb +6 -6
- data/lib/active_delivery/testing/minitest.rb +58 -0
- data/lib/active_delivery/testing/rspec.rb +4 -4
- data/lib/active_delivery/testing.rb +1 -0
- data/lib/active_delivery/version.rb +1 -1
- metadata +17 -6
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: active_delivery
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.2.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Vladimir Dementyev
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2024-02-05 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: bundler
|
@@ -70,16 +70,16 @@ dependencies:
|
|
70
70
|
name: ruby-next-core
|
71
71
|
requirement: !ruby/object:Gem::Requirement
|
72
72
|
requirements:
|
73
|
-
- - "
|
73
|
+
- - "~>"
|
74
74
|
- !ruby/object:Gem::Version
|
75
|
-
version:
|
75
|
+
version: '1.0'
|
76
76
|
type: :runtime
|
77
77
|
prerelease: false
|
78
78
|
version_requirements: !ruby/object:Gem::Requirement
|
79
79
|
requirements:
|
80
|
-
- - "
|
80
|
+
- - "~>"
|
81
81
|
- !ruby/object:Gem::Version
|
82
|
-
version:
|
82
|
+
version: '1.0'
|
83
83
|
description: Ruby and Rails framework for managing all types of notifications in one
|
84
84
|
place
|
85
85
|
email:
|
@@ -100,10 +100,20 @@ files:
|
|
100
100
|
- lib/.rbnext/3.0/active_delivery/lines/base.rb
|
101
101
|
- lib/.rbnext/3.0/active_delivery/lines/mailer.rb
|
102
102
|
- lib/.rbnext/3.0/active_delivery/testing.rb
|
103
|
+
- lib/.rbnext/3.0/active_delivery/testing/minitest.rb
|
103
104
|
- lib/.rbnext/3.1/abstract_notifier/async_adapters/active_job.rb
|
104
105
|
- lib/.rbnext/3.1/abstract_notifier/base.rb
|
105
106
|
- lib/.rbnext/3.1/active_delivery/base.rb
|
106
107
|
- lib/.rbnext/3.1/active_delivery/lines/base.rb
|
108
|
+
- lib/.rbnext/3.1/active_delivery/testing/minitest.rb
|
109
|
+
- lib/.rbnext/3.2/abstract_notifier/async_adapters/active_job.rb
|
110
|
+
- lib/.rbnext/3.2/abstract_notifier/base.rb
|
111
|
+
- lib/.rbnext/3.2/abstract_notifier/testing.rb
|
112
|
+
- lib/.rbnext/3.2/abstract_notifier/testing/rspec.rb
|
113
|
+
- lib/.rbnext/3.2/active_delivery/base.rb
|
114
|
+
- lib/.rbnext/3.2/active_delivery/lines/base.rb
|
115
|
+
- lib/.rbnext/3.2/active_delivery/lines/notifier.rb
|
116
|
+
- lib/.rbnext/3.2/active_delivery/testing/rspec.rb
|
107
117
|
- lib/abstract_notifier.rb
|
108
118
|
- lib/abstract_notifier/async_adapters.rb
|
109
119
|
- lib/abstract_notifier/async_adapters/active_job.rb
|
@@ -122,6 +132,7 @@ files:
|
|
122
132
|
- lib/active_delivery/lines/notifier.rb
|
123
133
|
- lib/active_delivery/raitie.rb
|
124
134
|
- lib/active_delivery/testing.rb
|
135
|
+
- lib/active_delivery/testing/minitest.rb
|
125
136
|
- lib/active_delivery/testing/rspec.rb
|
126
137
|
- lib/active_delivery/version.rb
|
127
138
|
homepage: https://github.com/palkan/active_delivery
|