dispatch_policy 0.3.0 → 0.4.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/CHANGELOG.md +139 -0
- data/README.md +76 -26
- data/app/assets/images/dispatch_policy/logo-large.svg +9 -0
- data/app/assets/images/dispatch_policy/logo-small.svg +7 -0
- data/app/assets/javascripts/dispatch_policy/turbo.es2017-umd.min.js +35 -0
- data/app/assets/stylesheets/dispatch_policy/application.css +180 -43
- data/app/controllers/dispatch_policy/assets_controller.rb +31 -0
- data/app/views/layouts/dispatch_policy/application.html.erb +84 -8
- data/config/routes.rb +3 -0
- data/lib/dispatch_policy/assets.rb +38 -0
- data/lib/dispatch_policy/engine.rb +3 -2
- data/lib/dispatch_policy/repository.rb +25 -2
- data/lib/dispatch_policy/tick.rb +35 -0
- data/lib/dispatch_policy/version.rb +1 -1
- data/lib/dispatch_policy.rb +1 -0
- metadata +35 -1
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: dispatch_policy
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.
|
|
4
|
+
version: 0.4.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- José Galisteo
|
|
@@ -149,6 +149,34 @@ dependencies:
|
|
|
149
149
|
- - ">="
|
|
150
150
|
- !ruby/object:Gem::Version
|
|
151
151
|
version: '0'
|
|
152
|
+
- !ruby/object:Gem::Dependency
|
|
153
|
+
name: capybara
|
|
154
|
+
requirement: !ruby/object:Gem::Requirement
|
|
155
|
+
requirements:
|
|
156
|
+
- - ">="
|
|
157
|
+
- !ruby/object:Gem::Version
|
|
158
|
+
version: '3.40'
|
|
159
|
+
type: :development
|
|
160
|
+
prerelease: false
|
|
161
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
162
|
+
requirements:
|
|
163
|
+
- - ">="
|
|
164
|
+
- !ruby/object:Gem::Version
|
|
165
|
+
version: '3.40'
|
|
166
|
+
- !ruby/object:Gem::Dependency
|
|
167
|
+
name: selenium-webdriver
|
|
168
|
+
requirement: !ruby/object:Gem::Requirement
|
|
169
|
+
requirements:
|
|
170
|
+
- - ">="
|
|
171
|
+
- !ruby/object:Gem::Version
|
|
172
|
+
version: '4.20'
|
|
173
|
+
type: :development
|
|
174
|
+
prerelease: false
|
|
175
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
176
|
+
requirements:
|
|
177
|
+
- - ">="
|
|
178
|
+
- !ruby/object:Gem::Version
|
|
179
|
+
version: '4.20'
|
|
152
180
|
description: Stages perform_later into a dedicated table, runs a tick loop that admits
|
|
153
181
|
jobs through declared gates (throttle, concurrency), then forwards survivors to
|
|
154
182
|
the real ActiveJob adapter. Embedded as a periodic job. Compatible with good_job
|
|
@@ -159,10 +187,15 @@ executables: []
|
|
|
159
187
|
extensions: []
|
|
160
188
|
extra_rdoc_files: []
|
|
161
189
|
files:
|
|
190
|
+
- CHANGELOG.md
|
|
162
191
|
- MIT-LICENSE
|
|
163
192
|
- README.md
|
|
193
|
+
- app/assets/images/dispatch_policy/logo-large.svg
|
|
194
|
+
- app/assets/images/dispatch_policy/logo-small.svg
|
|
195
|
+
- app/assets/javascripts/dispatch_policy/turbo.es2017-umd.min.js
|
|
164
196
|
- app/assets/stylesheets/dispatch_policy/application.css
|
|
165
197
|
- app/controllers/dispatch_policy/application_controller.rb
|
|
198
|
+
- app/controllers/dispatch_policy/assets_controller.rb
|
|
166
199
|
- app/controllers/dispatch_policy/dashboard_controller.rb
|
|
167
200
|
- app/controllers/dispatch_policy/partitions_controller.rb
|
|
168
201
|
- app/controllers/dispatch_policy/policies_controller.rb
|
|
@@ -186,6 +219,7 @@ files:
|
|
|
186
219
|
- config/routes.rb
|
|
187
220
|
- db/migrate/20260501000001_create_dispatch_policy_tables.rb
|
|
188
221
|
- lib/dispatch_policy.rb
|
|
222
|
+
- lib/dispatch_policy/assets.rb
|
|
189
223
|
- lib/dispatch_policy/bypass.rb
|
|
190
224
|
- lib/dispatch_policy/config.rb
|
|
191
225
|
- lib/dispatch_policy/context.rb
|