acidic_job 0.8.0 → 0.8.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: a8027a99e7fc6d5602e3269445211abefe4b835f69a7a33b0dea1f70fffec642
4
- data.tar.gz: 6a38451eb30528b774a2a4ee31ac8f2733dea2035c25c3713ecad873c10759c8
3
+ metadata.gz: '0924564388ca928e9923161a95788dfb393e71f48d82ab6474e221793befc6af'
4
+ data.tar.gz: 0a06d0e7f933a9e0e319bc698a3ab216502033b9c9df46fa7646cd77bdb1109c
5
5
  SHA512:
6
- metadata.gz: ce9eab1470bb0dbc63d92c2b3f8baa124e9f6a5dde95899248376b893a326ba71e6604d5892950677294d1226eb9e2fd8cc658952dee9222dea7c35c0c2f95f3
7
- data.tar.gz: 981613d28454547304c3123250256b74eb80b6af7d3212e138cfbdc3e59c347dfed5c0b96ca95498a511b0391fd893ad0d871ef3dc07939118d3231208370fb3
6
+ metadata.gz: db1b579a5887707c41534d825d261a024a25cab2c5619af1179d41360af85e8271bf16dc9fb29442aa1442f9d49366dbec60a8d8d3ea010eb15d4a413238fe40
7
+ data.tar.gz: 1c371720712b4eb34aec5c8b2aba077906100cc0b69bd72624844260c01522dfa4c5d843fea21b08efdc199dedfd08e8966c602b12bd73e04c8615c4e00f7487
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- acidic_job (0.8.0)
4
+ acidic_job (0.8.1)
5
5
  activejob
6
6
  activerecord
7
7
  activesupport
data/README.md CHANGED
@@ -153,9 +153,9 @@ class RideCreateJob < AcidicJob::Base
153
153
  @params = ride_params
154
154
 
155
155
  with_acidic_workflow persisting: { ride: nil } do |workflow|
156
- step :create_ride_and_audit_record, awaits: awaits: [SomeJob.with('argument_1', keyword: 'value'), AnotherJob.with(1, 2, 3, some: 'thing')]
157
- step :create_stripe_charge
158
- step :send_receipt
156
+ workflow.step :create_ride_and_audit_record, awaits: awaits: [SomeJob.with('argument_1', keyword: 'value'), AnotherJob.with(1, 2, 3, some: 'thing')]
157
+ workflow.step :create_stripe_charge
158
+ workflow.step :send_receipt
159
159
  end
160
160
  end
161
161
  end
@@ -172,9 +172,9 @@ class RideCreateJob < AcidicJob::Base
172
172
  @params = ride_params
173
173
 
174
174
  with_acidic_workflow persisting: { ride: nil } do |workflow|
175
- step :create_ride_and_audit_record, awaits: :dynamic_awaits
176
- step :create_stripe_charge
177
- step :send_receipt
175
+ workflow.step :create_ride_and_audit_record, awaits: :dynamic_awaits
176
+ workflow.step :create_stripe_charge
177
+ workflow.step :send_receipt
178
178
  end
179
179
  end
180
180
 
@@ -228,9 +228,9 @@ class RideCreateJob < AcidicJob::Base
228
228
  @params = ride_params
229
229
 
230
230
  with_acidic_workflow persisting: { ride: nil } do |workflow|
231
- step :create_ride_and_audit_record
232
- step :create_stripe_charge
233
- step :send_receipt
231
+ workflow.step :create_ride_and_audit_record
232
+ workflow.step :create_stripe_charge
233
+ workflow.step :send_receipt
234
234
  end
235
235
  end
236
236
 
@@ -264,9 +264,9 @@ class RideCreateJob < AcidicJob::Base
264
264
  @params = ride_params
265
265
 
266
266
  with_acidic_workflow persisting: { ride: nil } do |workflow|
267
- step :create_ride_and_audit_record
268
- step :create_stripe_charge
269
- step :send_receipt
267
+ workflow.step :create_ride_and_audit_record
268
+ workflow.step :create_stripe_charge
269
+ workflow.step :send_receipt
270
270
  end
271
271
  end
272
272
 
@@ -294,11 +294,11 @@ class ExampleJob < AcidicJob::Base
294
294
  end
295
295
  ```
296
296
 
297
- Conversely, a job class can use the `acidic_by_job_args` method to configure that job class to use the arguments passed to the job as the foundation for the job run's idempotency key:
297
+ Conversely, a job class can use the `acidic_by_job_arguments` method to configure that job class to use the arguments passed to the job as the foundation for the job run's idempotency key:
298
298
 
299
299
  ```ruby
300
300
  class ExampleJob < AcidicJob::Base
301
- acidic_by_job_args
301
+ acidic_by_job_arguments
302
302
 
303
303
  def perform(arg_1, arg_2)
304
304
  # the idempotency key will be based on whatever the values of `arg_1` and `arg_2` are
@@ -348,9 +348,9 @@ class RideCreateJob < AcidicJob::Base
348
348
  @params = ride_params
349
349
 
350
350
  with_acidic_workflow persisting: { ride: nil } do |workflow|
351
- step :create_ride_and_audit_record, awaits: [SomeJob.with('argument_1', keyword: 'value')]
352
- step :create_stripe_charge, args: [1, 2, 3], kwargs: { some: 'thing' }
353
- step :send_receipt
351
+ workflow.step :create_ride_and_audit_record, awaits: [SomeJob.with('argument_1', keyword: 'value')]
352
+ workflow.step :create_stripe_charge, args: [1, 2, 3], kwargs: { some: 'thing' }
353
+ workflow.step :send_receipt
354
354
  end
355
355
  end
356
356
 
@@ -43,8 +43,12 @@ module AcidicJob
43
43
  # `perform_now` runs a job synchronously and immediately
44
44
  # `perform_later` runs a job asynchronously and queues it immediately
45
45
  # `perform_acidicly` run a job asynchronously and queues it after a successful database commit
46
- def perform_acidicly(*args)
47
- job = new(*args)
46
+ def perform_acidicly(*args, **kwargs)
47
+ job = if kwargs.empty?
48
+ new(*args)
49
+ else
50
+ new(*args, **kwargs)
51
+ end
48
52
 
49
53
  Run.stage!(job)
50
54
  end
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module AcidicJob
4
- VERSION = "0.8.0"
4
+ VERSION = "0.8.1"
5
5
  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: 0.8.0
4
+ version: 0.8.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - fractaledmind
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2022-08-16 00:00:00.000000000 Z
11
+ date: 2022-08-17 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: activejob