acidic_job 1.0.0.pre4 → 1.0.0.pre7

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: d549814b3b04592d10c716f8715e67d15eb7383c3235ecb5d74319ab568b5507
4
- data.tar.gz: 5279750f02439d8fe453d6e5c430c3611513010bebbbdb18c2853d0d5b8d2764
3
+ metadata.gz: bf6aac5040961c40dafe3650663ae883ce7f8a101bea9eaaf3e82c23df75938d
4
+ data.tar.gz: 5ddef7d9b955f06306c9a7f338c3b2dca01e85a7716f24c2865d94f294ac26dc
5
5
  SHA512:
6
- metadata.gz: 7fa1a9fff8203a7a426738f8559d4f7afbcedc9e35832508a9550a113e348f158adc3c28ab58fb4f0ce6ca0fb3c9cc08c7f17d84cb2e574323e376d78188b18e
7
- data.tar.gz: 001dd65449fdc56b3ca2bd9b74be00bb0646b3875986844392b31ec4536a7135c23da66fa7b32e20b7a893ecfc255caaefd423a72bfdaa8d3b39a68fe469329f
6
+ metadata.gz: a224fb33d1c86ac07c4a0d6bd5d4f8853a7ddbb477fef6c3a1584c62002f7e1c7741c89b751874b8405d99132bfa17fefae6aa0364373709f9cd5725b64cb02f
7
+ data.tar.gz: '090ca69264e42984c3dd2331e073d90cd9f3d464c602b854f81d745a9dedd33586f155cfbd885d832b30b8e4c0956b0eda192978e3aa5165b623ce503a651b01'
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- acidic_job (1.0.0.pre4)
4
+ acidic_job (1.0.0.pre7)
5
5
  activerecord (>= 6.1.0)
6
6
  activesupport
7
7
 
@@ -122,6 +122,8 @@ GEM
122
122
  nokogiri (1.12.3)
123
123
  mini_portile2 (~> 2.6.1)
124
124
  racc (~> 1.4)
125
+ nokogiri (1.12.3-x86_64-darwin)
126
+ racc (~> 1.4)
125
127
  noticed (1.5.7)
126
128
  http (>= 4.0.0)
127
129
  rails (>= 5.2.0)
data/README.md CHANGED
@@ -176,7 +176,6 @@ One final feature for those of you using Sidekiq Pro: an integrated DSL for Side
176
176
  In my opinion, any commercial software using Sidekiq should get Sidekiq Pro; it is _absolutely_ worth the money. If, however, you are using `acidic_job` in a non-commercial application, you could use the open-source dropin replacement for this functionality: https://github.com/breamware/sidekiq-batch
177
177
 
178
178
  ```ruby
179
- # TODO: write code sample
180
179
  class RideCreateJob < ActiveJob::Base
181
180
  include AcidicJob
182
181
 
@@ -192,6 +191,71 @@ class RideCreateJob < ActiveJob::Base
192
191
  end
193
192
  ```
194
193
 
194
+ ## Testing
195
+
196
+ When testing acidic jobs, you are likely to run into `ActiveRecord::TransactionIsolationError`s:
197
+
198
+ ```
199
+ ActiveRecord::TransactionIsolationError: cannot set transaction isolation in a nested transaction
200
+ ```
201
+
202
+ This error is thrown because by default RSpec and most MiniTest test suites use database transactions to keep the test database clean between tests. The database transaction that is wrapping all of the code executed in your test is run at the standard isolation level, but acidic jobs then try to create another transaction run at a more conservative isolation level. You cannot have a nested transaction that runs at a different isolation level, thus, this error.
203
+
204
+ In order to avoid this error, you need to ensure firstly that your tests that run your acidic jobs are not using a database transaction and secondly that they use some different strategy to keep your test database clean. The [DatabaseCleaner](https://github.com/DatabaseCleaner/database_cleaner) gem is a commonly used tool to manage different strategies for keeping your test database clean. As for which strategy to use, `truncation` and `deletion` are both safe, but their speed varies based on our app's table structure (see https://github.com/DatabaseCleaner/database_cleaner#what-strategy-is-fastest). Either is fine; use whichever is faster for your app.
205
+
206
+ In order to make this test setup simpler, `AcidicJob` provides a `TestCase` class that your MiniTest jobs tests can inherit from. It is simple; it inherits from `ActiveJob::TestCase`, sets `use_transactional_tests` to `false`, and ensures `DatabaseCleaner` is run for each of your tests:
207
+
208
+ ```ruby
209
+ class AcidicJob::TestCase < ActiveJob::TestCase
210
+ self.use_transactional_tests = false
211
+
212
+ def before_setup
213
+ super
214
+ DatabaseCleaner.start
215
+ end
216
+
217
+ def after_teardown
218
+ DatabaseCleaner.clean
219
+ super
220
+ end
221
+
222
+ # ...
223
+ end
224
+ ```
225
+
226
+ For those of you using RSpec, you can require the `acidic_job/rspec_configuration` file, which will configure RSpec in the exact same way I have used in my RSpec projects to allow me to test acidic jobs with either the `deletion` strategy but still have all of my other tests use the fast `transaction` strategy:
227
+
228
+ ```ruby
229
+ require "database_cleaner/active_record"
230
+
231
+ # see https://github.com/DatabaseCleaner/database_cleaner#how-to-use
232
+ RSpec.configure do |config|
233
+ config.use_transactional_fixtures = false
234
+
235
+ config.before(:suite) do
236
+ DatabaseCleaner.clean_with :truncation
237
+
238
+ # Here we are defaulting to :transaction but swapping to deletion for some specs;
239
+ # if your spec or its code-under-test uses
240
+ # nested transactions then specify :transactional e.g.:
241
+ # describe "SomeWorker", :transactional do
242
+ #
243
+ DatabaseCleaner.strategy = :transaction
244
+
245
+ config.before(:context, transactional: true) { DatabaseCleaner.strategy = :deletion }
246
+ config.after(:context, transactional: true) { DatabaseCleaner.strategy = :transaction }
247
+ config.before(:context, type: :system) { DatabaseCleaner.strategy = :deletion }
248
+ config.after(:context, type: :system) { DatabaseCleaner.strategy = :transaction }
249
+ end
250
+
251
+ config.around(:each) do |example|
252
+ DatabaseCleaner.cleaning do
253
+ example.run
254
+ end
255
+ end
256
+ end
257
+ ```
258
+
195
259
  ## Development
196
260
 
197
261
  After checking out the repo, run `bin/setup` to install dependencies. Then, run `rake test` to run the tests. You can also run `bin/console` for an interactive prompt that will allow you to experiment.
data/UPGRADE_GUIDE.md CHANGED
@@ -1,19 +1,19 @@
1
1
  # AcidicJob Upgrade Guide
2
2
 
3
- 1. Update version requirements in `Gemfile`
3
+ ## 1. Update version requirements in `Gemfile`
4
4
 
5
- ```ruby
6
- -gem "acidic_job"
7
- +gem "acidic_job", "~> 1.0.0.pre1"
5
+ ```diff
6
+ - gem "acidic_job"
7
+ + gem "acidic_job", "~> 1.0.0.pre1"
8
8
  ```
9
9
 
10
10
  result:
11
11
  ```
12
- Installing acidic_job 1.0.0.pre1 (was 0.7.7)
12
+ Installing acidic_job 1.0.0.pre4 (was 0.7.7)
13
13
  Bundle updated!
14
14
  ```
15
15
 
16
- 2. Generate migration for new `AcidicJob::Run` model
16
+ ## 2. Generate migration for new `AcidicJob::Run` model
17
17
 
18
18
  ```bash
19
19
  rails generate acidic_job
@@ -24,7 +24,7 @@ result:
24
24
  create db/migrate/#{yyyymmddhhmmss}_create_acidic_job_runs.rb
25
25
  ```
26
26
 
27
- 3. Delete any unneeded `AcidicJob::Key` records
27
+ ## 3. Delete any unneeded `AcidicJob::Key` records
28
28
 
29
29
  Typically, records that are already finished do not need to be retained. Sometimes, however, applications key finished records around for some amount of time for debugging or metrics aggregation. Whatever your application's logic is for whether or not an `AcidicJob::Key` record is still needed, for all unneeded records, delete them.
30
30
 
@@ -34,7 +34,7 @@ For example, this would delete all finished `Key` records over 1 month old:
34
34
  AcidicJob::Key.where(recovery_point: AcidicJob::Key::RECOVERY_POINT_FINISHED, last_run_at: ..1.month.ago).delete_all
35
35
  ```
36
36
 
37
- 4. Migrate `AcidicJob::Key` to `AcidicJob::Run`
37
+ ## 4. Migrate `AcidicJob::Key` to `AcidicJob::Run`
38
38
 
39
39
  `AcidicJob` ships with an upgrade module that provides a script to migrate older `Key` records to the new `Run` model.
40
40
 
@@ -47,25 +47,35 @@ This script will prepare an `insert_all` command for `Run` records by mapping th
47
47
  result:
48
48
  ```
49
49
  {
50
- run_records: <Integer>,
51
- key_records: <Integer>,
52
- errored_keys: <Array>
50
+ run_records: <Integer>,
51
+ key_records: <Integer>,
52
+ errored_keys: <Array>
53
53
  }
54
54
  ```
55
55
 
56
- 5. Triage remaining `AcidicJob::Key` records
56
+ ## 5. Triage remaining `AcidicJob::Key` records
57
57
 
58
58
  If there were any `AcidicJob::Key` records that failed to be mapped to the new `Run` model, you will need to manually triage whatever the exception was. In all likelihood, the exception would be relating to the translation of the `Key#job_args` field to the `Run#serialized_job` field, as all other fields have a fairly straight-forward mapping. If you can't resolve the issue, please open an Issue in GitHub.
59
59
 
60
- 6. Ensure all `AcidicJob::Staged` records are processed
60
+ ## 6. Ensure all `AcidicJob::Staged` records are processed
61
61
 
62
62
  `AcidicJob` still ships with an upgrade module that provides the older `Key` and `Staged` records, so this functionality will still be present to handle any existing records in your database when you deploy the updated version.
63
63
 
64
- 7. Remove the old tables
64
+ ## 7. Remove the old tables
65
65
 
66
66
  Once you have successfully migrated everything over and the new system has been running smoothly for some time, you should drop the old `acidic_job_keys` and `staged_acidic_jobs` tables. We provide a migration generator just for this purpose:
67
67
 
68
68
  ```bash
69
69
  rails generate acidic_job:drop_tables
70
+ ```
71
+
72
+ result:
73
+ ```
74
+ create db/migrate/#{yyyymmddhhmmss}_drop_old_acidic_job_tables.rb
75
+ ```
76
+
77
+ You can then run the migration to have those tables removed:
78
+
79
+ ```bash
70
80
  rails db:migrate
71
- ```
81
+ ```
@@ -0,0 +1,31 @@
1
+ # frozen_string_literal: true
2
+
3
+ require "rspec"
4
+ require "database_cleaner/active_record"
5
+
6
+ # see https://github.com/DatabaseCleaner/database_cleaner#how-to-use
7
+ RSpec.configure do |config|
8
+ config.use_transactional_fixtures = false
9
+
10
+ config.before(:suite) do
11
+ DatabaseCleaner.clean_with :truncation
12
+
13
+ # Here we are defaulting to :transaction but swapping to deletion for some specs;
14
+ # if your spec or its code-under-test uses
15
+ # nested transactions then specify :transactional e.g.:
16
+ # describe "SomeWorker", :transactional do
17
+ #
18
+ DatabaseCleaner.strategy = :transaction
19
+
20
+ config.before(:context, transactional: true) { DatabaseCleaner.strategy = :deletion }
21
+ config.after(:context, transactional: true) { DatabaseCleaner.strategy = :transaction }
22
+ config.before(:context, type: :system) { DatabaseCleaner.strategy = :deletion }
23
+ config.after(:context, type: :system) { DatabaseCleaner.strategy = :transaction }
24
+ end
25
+
26
+ config.around(:each) do |example|
27
+ DatabaseCleaner.cleaning do
28
+ example.run
29
+ end
30
+ end
31
+ end
@@ -35,6 +35,19 @@ module AcidicJob
35
35
  validates :workflow, presence: true
36
36
  end
37
37
 
38
+ def self.purge
39
+ successfully_completed = where(
40
+ recovery_point: FINISHED_RECOVERY_POINT,
41
+ error_object: nil
42
+ )
43
+ count = successfully_completed.count
44
+
45
+ return 0 if count.zero?
46
+
47
+ Rails.logger.info("Deleting #{count} successfully completed AcidicJob runs")
48
+ successfully_completed.delete_all
49
+ end
50
+
38
51
  def finished?
39
52
  recovery_point == FINISHED_RECOVERY_POINT
40
53
  end
@@ -0,0 +1,20 @@
1
+ # frozen_string_literal: true
2
+
3
+ require "active_job/test_case"
4
+ require "database_cleaner/active_record"
5
+
6
+ module AcidicJob
7
+ class TestCase < ActiveJob::TestCase
8
+ self.use_transactional_tests = false
9
+
10
+ def before_setup
11
+ super
12
+ DatabaseCleaner.start
13
+ end
14
+
15
+ def after_teardown
16
+ DatabaseCleaner.clean
17
+ super
18
+ end
19
+ end
20
+ end
@@ -3,113 +3,116 @@
3
3
  require "active_support/concern"
4
4
 
5
5
  module AcidicJob
6
- # recreate the original `Key` model
7
- class Key < ::ActiveRecord::Base
8
- RECOVERY_POINT_FINISHED = "FINISHED"
9
-
10
- self.table_name = "acidic_job_keys"
11
-
12
- serialize :error_object
13
- serialize :job_args
14
- serialize :workflow
15
- store :attr_accessors
16
- end
17
-
18
- # recreate the original `Staged` model
19
- class Staged < ActiveRecord::Base
20
- self.table_name = "staged_acidic_jobs"
21
-
22
- serialize :job_args
23
-
24
- after_create_commit :enqueue_job
25
-
26
- private
27
-
28
- # rubocop:disable Metrics/AbcSize, Metrics/MethodLength
29
- def enqueue_job
30
- gid = { "staged_job_gid" => to_global_id.to_s }
31
-
32
- if job_args.is_a?(Hash) && job_args.key?("arguments")
33
- job_args["arguments"].concat([gid])
34
- else
35
- job_args.concat([gid])
36
- end
37
-
38
- case adapter
39
- when "activejob"
40
- ::ActiveJob::Base.deserialize(job_args).enqueue
41
- when "sidekiq"
42
- job_name.constantize.perform_async(*job_args)
43
- else
44
- raise UnknownJobAdapter.new(adapter: adapter)
45
- end
46
-
47
- # NOTE: record will be deleted after the job has successfully been performed
48
- true
49
- end
50
- # rubocop:enable Metrics/AbcSize, Metrics/MethodLength
51
- end
52
-
53
- module UpgradeService
54
- def self.execute()
55
- # prepare an array to hold the attribute hashes to be passed to `insert_all`
56
- run_attributes = []
57
- # prepare an array to hold any `Key` records that we couldn't successfully map to `Run` records
58
- errored_keys = []
59
-
60
- # iterate over all `AcidicJob::Key` records in batches, preparing a `Run` attribute hash to be passed to `insert_all`
61
- ::AcidicJob::Key.find_each do |key|
62
- # map all of the simple attributes directly
63
- attributes = {
64
- id: key.id,
65
- staged: false,
66
- idempotency_key: key.idempotency_key,
67
- job_class: key.job_name,
68
- last_run_at: key.last_run_at,
69
- locked_at: key.locked_at,
70
- recovery_point: key.recovery_point,
71
- error_object: key.error_object,
72
- attr_accessors: key.attr_accessors,
73
- workflow: key.workflow,
74
- created_at: key.created_at,
75
- updated_at: key.updated_at
76
- }
77
-
78
- # prepare the more complicated `job_args` -> `serialized_job` translation
79
- job_class = key.job_name.constantize
80
- if defined?(::Sidekiq) && job_class.include?(::Sidekiq::Worker)
81
- job_class.include(::AcidicJob::Extensions::Sidekiq) unless job_class.include?(::AcidicJob::Extensions::Sidekiq)
82
- job_instance = job_class.new
83
- serialized_job = job_instance.serialize_job(*key.job_args)
84
- elsif defined?(::ActiveJob) && job_class < ::ActiveJob::Base
85
- job_class.include(::AcidicJob::Extensions::ActiveJob) unless job_class.include?(::AcidicJob::Extensions::ActiveJob)
86
- job_args = begin
87
- ::ActiveJob::Arguments.deserialize(key.job_args)
88
- rescue ::ActiveJob::DeserializationError
89
- key.job_args
90
- end
91
- job_instance = job_class.new(*job_args)
92
- serialized_job = job_instance.serialize_job()
93
- end
94
-
95
- attributes[:serialized_job] = serialized_job
96
- run_attributes << attributes
97
- rescue StandardError => exception
98
- errored_keys << [exception, key]
99
- end
100
-
101
- # insert all of the `Run` records
102
- ::AcidicJob::Run.insert_all(run_attributes)
103
-
104
- # delete all successfully migrated `Key` record
105
- ::AcidicJob::Key.where(id: ::AcidicJob::Run.select(:id)).delete_all
106
-
107
- # return a report of the upgrade migration
108
- {
109
- run_records: ::AcidicJob::Run.count,
110
- key_records: ::AcidicJob::Key.count,
111
- errored_keys: errored_keys
112
- }
113
- end
114
- end
6
+ # recreate the original `Key` model
7
+ class Key < ::ActiveRecord::Base
8
+ RECOVERY_POINT_FINISHED = "FINISHED"
9
+
10
+ self.table_name = "acidic_job_keys"
11
+
12
+ serialize :error_object
13
+ serialize :job_args
14
+ serialize :workflow
15
+ store :attr_accessors
16
+ end
17
+
18
+ # recreate the original `Staged` model
19
+ class Staged < ActiveRecord::Base
20
+ self.table_name = "staged_acidic_jobs"
21
+
22
+ serialize :job_args
23
+
24
+ after_create_commit :enqueue_job
25
+
26
+ private
27
+
28
+ def enqueue_job
29
+ gid = { "staged_job_gid" => to_global_id.to_s }
30
+
31
+ if job_args.is_a?(Hash) && job_args.key?("arguments")
32
+ job_args["arguments"].concat([gid])
33
+ else
34
+ job_args.concat([gid])
35
+ end
36
+
37
+ case adapter
38
+ when "activejob"
39
+ ::ActiveJob::Base.deserialize(job_args).enqueue
40
+ when "sidekiq"
41
+ job_name.constantize.perform_async(*job_args)
42
+ else
43
+ raise UnknownJobAdapter.new(adapter: adapter)
44
+ end
45
+
46
+ # NOTE: record will be deleted after the job has successfully been performed
47
+ true
48
+ end
49
+ end
50
+
51
+ module UpgradeService
52
+ def self.execute
53
+ # prepare an array to hold the attribute hashes to be passed to `insert_all`
54
+ run_attributes = []
55
+ # prepare an array to hold any `Key` records that we couldn't successfully map to `Run` records
56
+ errored_keys = []
57
+
58
+ # iterate over all `AcidicJob::Key` records in batches,
59
+ # preparing a `Run` attribute hash to be passed to `insert_all`
60
+ ::AcidicJob::Key.find_each do |key|
61
+ # map all of the simple attributes directly
62
+ attributes = {
63
+ id: key.id,
64
+ staged: false,
65
+ idempotency_key: key.idempotency_key,
66
+ job_class: key.job_name,
67
+ last_run_at: key.last_run_at,
68
+ locked_at: key.locked_at,
69
+ recovery_point: key.recovery_point,
70
+ error_object: key.error_object,
71
+ attr_accessors: key.attr_accessors,
72
+ workflow: key.workflow,
73
+ created_at: key.created_at,
74
+ updated_at: key.updated_at
75
+ }
76
+
77
+ # prepare the more complicated `job_args` -> `serialized_job` translation
78
+ job_class = key.job_name.constantize
79
+ if defined?(::Sidekiq) && job_class.include?(::Sidekiq::Worker)
80
+ unless job_class.include?(::AcidicJob::Extensions::Sidekiq)
81
+ job_class.include(::AcidicJob::Extensions::Sidekiq)
82
+ end
83
+ job_instance = job_class.new
84
+ serialized_job = job_instance.serialize_job(*key.job_args)
85
+ elsif defined?(::ActiveJob) && job_class < ::ActiveJob::Base
86
+ unless job_class.include?(::AcidicJob::Extensions::ActiveJob)
87
+ job_class.include(::AcidicJob::Extensions::ActiveJob)
88
+ end
89
+ job_args = begin
90
+ ::ActiveJob::Arguments.deserialize(key.job_args)
91
+ rescue ::ActiveJob::DeserializationError
92
+ key.job_args
93
+ end
94
+ job_instance = job_class.new(*job_args)
95
+ serialized_job = job_instance.serialize_job
96
+ end
97
+
98
+ attributes[:serialized_job] = serialized_job
99
+ run_attributes << attributes
100
+ rescue StandardError => e
101
+ errored_keys << [e, key]
102
+ end
103
+
104
+ # insert all of the `Run` records
105
+ ::AcidicJob::Run.insert_all(run_attributes)
106
+
107
+ # delete all successfully migrated `Key` record
108
+ ::AcidicJob::Key.where(id: ::AcidicJob::Run.select(:id)).delete_all
109
+
110
+ # return a report of the upgrade migration
111
+ {
112
+ run_records: ::AcidicJob::Run.count,
113
+ key_records: ::AcidicJob::Key.count,
114
+ errored_keys: errored_keys
115
+ }
116
+ end
117
+ end
115
118
  end
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module AcidicJob
4
- VERSION = "1.0.0.pre4"
4
+ VERSION = "1.0.0.pre7"
5
5
  end
@@ -3,24 +3,24 @@
3
3
  require "rails/generators/active_record"
4
4
 
5
5
  module AcidicJob
6
- module Generators
7
- class DropTablesGenerator < ::Rails::Generators::Base
8
- include ActiveRecord::Generators::Migration
9
- source_root File.expand_path("templates", __dir__)
6
+ module Generators
7
+ class DropTablesGenerator < ::Rails::Generators::Base
8
+ include ActiveRecord::Generators::Migration
9
+ source_root File.expand_path("templates", __dir__)
10
10
 
11
- desc "Drops the pre-1.0 tables for the AcidicJob::Key and AcidicJob::Staged models."
11
+ desc "Drops the pre-1.0 tables for the AcidicJob::Key and AcidicJob::Staged models."
12
12
 
13
- def copy_migration
14
- migration_template "drop_acidic_job_keys_migration.rb.erb",
15
- "db/migrate/drop_old_acidic_job_tables.rb",
16
- migration_version: migration_version
17
- end
18
-
19
- protected
20
-
21
- def migration_version
22
- "[#{ActiveRecord::VERSION::MAJOR}.#{ActiveRecord::VERSION::MINOR}]"
23
- end
24
- end
25
- end
26
- end
13
+ def copy_migration
14
+ migration_template "drop_acidic_job_keys_migration.rb.erb",
15
+ "db/migrate/drop_old_acidic_job_tables.rb",
16
+ migration_version: migration_version
17
+ end
18
+
19
+ protected
20
+
21
+ def migration_version
22
+ "[#{ActiveRecord::VERSION::MAJOR}.#{ActiveRecord::VERSION::MINOR}]"
23
+ end
24
+ end
25
+ end
26
+ end
@@ -7,21 +7,21 @@ module AcidicJob
7
7
  class InstallGenerator < ::Rails::Generators::Base
8
8
  include ActiveRecord::Generators::Migration
9
9
  source_root File.expand_path("templates", __dir__)
10
-
10
+
11
11
  desc "Generates a migration for the AcidicJob::Run table."
12
-
12
+
13
13
  # Copies the migration template to db/migrate.
14
14
  def copy_acidic_job_runs_migration_files
15
15
  migration_template "create_acidic_job_runs_migration.rb.erb",
16
16
  "db/migrate/create_acidic_job_runs.rb",
17
17
  migration_version: migration_version
18
18
  end
19
-
19
+
20
20
  protected
21
-
21
+
22
22
  def migration_version
23
23
  "[#{ActiveRecord::VERSION::MAJOR}.#{ActiveRecord::VERSION::MINOR}]"
24
24
  end
25
25
  end
26
26
  end
27
- end
27
+ end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: acidic_job
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.0.pre4
4
+ version: 1.0.0.pre7
5
5
  platform: ruby
6
6
  authors:
7
7
  - fractaledmind
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2022-03-03 00:00:00.000000000 Z
11
+ date: 2022-03-11 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: activerecord
@@ -84,9 +84,11 @@ files:
84
84
  - lib/acidic_job/idempotency_key.rb
85
85
  - lib/acidic_job/perform_wrapper.rb
86
86
  - lib/acidic_job/recovery_point.rb
87
+ - lib/acidic_job/rspec_configuration.rb
87
88
  - lib/acidic_job/run.rb
88
89
  - lib/acidic_job/staging.rb
89
90
  - lib/acidic_job/step.rb
91
+ - lib/acidic_job/test_case.rb
90
92
  - lib/acidic_job/upgrade_service.rb
91
93
  - lib/acidic_job/version.rb
92
94
  - lib/generators/acidic_job/drop_tables_generator.rb