postburner 1.0.0.pre.2 → 1.0.0.pre.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/README.md +248 -167
- data/app/concerns/postburner/commands.rb +143 -0
- data/app/concerns/postburner/execution.rb +190 -0
- data/app/concerns/postburner/insertion.rb +170 -0
- data/app/concerns/postburner/logging.rb +181 -0
- data/{lib/postburner/queue_config.rb → app/concerns/postburner/properties.rb} +90 -26
- data/app/concerns/postburner/statistics.rb +125 -0
- data/app/models/postburner/job.rb +15 -757
- data/app/models/postburner/mailer.rb +2 -2
- data/app/views/postburner/jobs/show.html.haml +2 -2
- data/config/postburner.yml.example +32 -30
- data/lib/generators/postburner/install/templates/config/postburner.yml +32 -30
- data/lib/postburner/active_job/adapter.rb +9 -9
- data/lib/postburner/beanstalkd.rb +18 -39
- data/lib/postburner/configuration.rb +41 -14
- data/lib/postburner/strategies/queue.rb +19 -9
- data/lib/postburner/version.rb +1 -1
- data/lib/postburner/workers/worker.rb +27 -28
- data/lib/postburner.rb +0 -1
- metadata +7 -2
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: postburner
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.0.0.pre.
|
|
4
|
+
version: 1.0.0.pre.4
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Matt Smith
|
|
@@ -110,6 +110,12 @@ files:
|
|
|
110
110
|
- app/assets/config/postburner_manifest.js
|
|
111
111
|
- app/assets/stylesheets/postburner/application.css
|
|
112
112
|
- app/concerns/postburner/callbacks.rb
|
|
113
|
+
- app/concerns/postburner/commands.rb
|
|
114
|
+
- app/concerns/postburner/execution.rb
|
|
115
|
+
- app/concerns/postburner/insertion.rb
|
|
116
|
+
- app/concerns/postburner/logging.rb
|
|
117
|
+
- app/concerns/postburner/properties.rb
|
|
118
|
+
- app/concerns/postburner/statistics.rb
|
|
113
119
|
- app/controllers/postburner/application_controller.rb
|
|
114
120
|
- app/controllers/postburner/jobs_controller.rb
|
|
115
121
|
- app/controllers/postburner/static_controller.rb
|
|
@@ -141,7 +147,6 @@ files:
|
|
|
141
147
|
- lib/postburner/configuration.rb
|
|
142
148
|
- lib/postburner/connection.rb
|
|
143
149
|
- lib/postburner/engine.rb
|
|
144
|
-
- lib/postburner/queue_config.rb
|
|
145
150
|
- lib/postburner/strategies/immediate_test_queue.rb
|
|
146
151
|
- lib/postburner/strategies/nice_queue.rb
|
|
147
152
|
- lib/postburner/strategies/null_queue.rb
|