readymade 0.3.6 → 0.3.7

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: 90f0eb0091bea1e29078e83958d77aedfa989c39af4d21213bec81347f4d73df
4
- data.tar.gz: b96a07f92350bee6be041456b979dc781ad1324ad8ef38e95547f9af34a250a8
3
+ metadata.gz: a99833ca151368c750c36d51cdd6be713210f846b1cdd78b2ba533b188fa3d63
4
+ data.tar.gz: f65962b9ddfebc091f7f799825e7db62e579ee8ad14c3f86afeae782f3f2692b
5
5
  SHA512:
6
- metadata.gz: 82b0f5dbc204ea624d84c48edc4b6619216c300d447f1cae69a1828b88d4533b2048960757f2e354f5adf15400b993b2efff92e0e44f4e2c6e8e38a50a7a8221
7
- data.tar.gz: 21b076ad062a65ed5afde67521ee433f99228cedf0d0b229079270e6f3793b7e4097a48ba02c9c81e7f5f84eedef8b0fc565f1ade7dbdfd518c91cbfb346227c
6
+ metadata.gz: aefb0039b18326b3c8b47b77a8259f8957adf897bfbce727d14e2c2498652539c49ef271d1ff7281fd911e7c43577f9f2eb5c3c65f5827a6dc43f1c6a2556c7e
7
+ data.tar.gz: 328f459c616399fab211b04db587ef586caf0a79a030850d14bf1b23b66e1a49944c881b656ebff0118b8bdf7c1be8d2aa98e5a7ef4a21bb15edd4dfe9b4d7f6
data/CHANGELOG.md CHANGED
@@ -1,6 +1,10 @@
1
1
  Changelog
2
2
  All notable changes to this project will be documented in this file.
3
3
 
4
+ ## [0.3.7] - 2023-08-08
5
+
6
+ * Fix invalid behaviour of `call!` method
7
+
4
8
  ## [0.3.6] - 2023-07-21
5
9
 
6
10
  * Add `queue_as: :name` argument to `Readymade::BackgroundJob` to select queue name when using `.call_async(args.merge(queue_as: :my_queue))`
data/Gemfile.lock CHANGED
@@ -1,19 +1,19 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- readymade (0.3.6)
4
+ readymade (0.3.7)
5
5
  activejob
6
6
  activemodel
7
7
 
8
8
  GEM
9
9
  remote: https://rubygems.org/
10
10
  specs:
11
- activejob (7.0.5)
12
- activesupport (= 7.0.5)
11
+ activejob (7.0.6)
12
+ activesupport (= 7.0.6)
13
13
  globalid (>= 0.3.6)
14
- activemodel (7.0.5)
15
- activesupport (= 7.0.5)
16
- activesupport (7.0.5)
14
+ activemodel (7.0.6)
15
+ activesupport (= 7.0.6)
16
+ activesupport (7.0.6)
17
17
  concurrent-ruby (~> 1.0, >= 1.0.2)
18
18
  i18n (>= 1.6, < 2)
19
19
  minitest (>= 5.1)
@@ -42,7 +42,9 @@ module Readymade
42
42
 
43
43
  def call; end
44
44
 
45
- def call!; end
45
+ def call!
46
+ call
47
+ end
46
48
 
47
49
  def call_async
48
50
  ::Readymade::BackgroundJob.perform_later(class_name: self.class.name, **args)
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Readymade
4
- VERSION = '0.3.6'
4
+ VERSION = '0.3.7'
5
5
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: readymade
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.3.6
4
+ version: 0.3.7
5
5
  platform: ruby
6
6
  authors:
7
7
  - OrestF
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2023-07-21 00:00:00.000000000 Z
11
+ date: 2023-08-08 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: byebug