File tree 3 files changed +4
-4
lines changed
3 files changed +4
-4
lines changed Original file line number Diff line number Diff line change 1
1
## [ Unreleased]
2
- - Add support for ` Interactify.with(queue: 'within_30_seconds', retry: 3) `
2
+ - Add support for ` Interactify.with(self, queue: 'within_30_seconds', retry: 3) `
3
3
4
4
## [ 0.5.0] - 2024-01-01
5
5
- Add support for ` SetA = Interactify { _1.a = 'a' } ` , lambda and block class creation syntax
Original file line number Diff line number Diff line change @@ -471,7 +471,7 @@ By using it's internal Async class.
471
471
### Sidekiq options
472
472
``` ruby
473
473
class SomeInteractor
474
- include Interactify .with(queue: ' within_30_seconds' )
474
+ include Interactify .with(self , queue: ' within_30_seconds' )
475
475
end
476
476
```
477
477
@@ -497,7 +497,7 @@ class SomeInteractor
497
497
end
498
498
```
499
499
500
- Here the JobWithin30Seconds class is manually set up and overrides the one
500
+ Here the JobWithin30Seconds class is manually set up and subclasses the one
501
501
automatically created by ` include Interactify ` .
502
502
503
503
## FAQs
Original file line number Diff line number Diff line change @@ -34,7 +34,7 @@ def included(base)
34
34
# E.g.
35
35
#
36
36
# class ExampleInteractor
37
- # include Interactify.with(queue: 'within_30_seconds', retries: 3)
37
+ # include Interactify.with(self, queue: 'within_30_seconds', retries: 3)
38
38
#
39
39
# expect :foo
40
40
# end
You can’t perform that action at this time.
0 commit comments