action_subscriber 5.3.2-java → 5.3.3-java

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: 800f9883cc51d3be5affb3f4b5158341bc72cb935c3f7590d0b5de7490843473
4
- data.tar.gz: f60298846b87042791698c7900cd3d8769c9a1ab1b8d7ba521d3541d548ac977
3
+ metadata.gz: fa97fd626af0fc640175fb24134710f56720d59423c6202257ea0ae430cf184d
4
+ data.tar.gz: d6afd3be203fdb1674ee5e5ffe5b9827525072a76839347f909e60a4ad3e2477
5
5
  SHA512:
6
- metadata.gz: 481cb9ccf335b441fe4d5b50bed7be649a0722547662e51b266c7ab001f2a52b7de47b3fdae231f89dfe50747ca394f8a85a226ad53bd33e8b61680a51ed7ad8
7
- data.tar.gz: 77d3bb7ce0da7975fadda3c0a18c93cf157a0b8792825a296637d90c6d6ee816fdbac7471c7e1086ac3755a6d0b5d6f2ffe652545484adb7c8d8b71285cb3dda
6
+ metadata.gz: 5cb3e64190f4f5c25c652d8f239d10d88db283637e8ec19793ee714a53192d009a5b0305bf46f451fd784f845300e50804b7ccf77fac912b88f2e8d47daaa03b
7
+ data.tar.gz: ca9e016b271a01e0dec7110fcea6a84a3c75f85b6a0d8f5fbca7488f5eda07354cb72691f01465c28889aa15b12d323efadd0b4022863626d8677f05a4123f9c
data/.circleci/config.yml CHANGED
@@ -60,3 +60,4 @@ workflows:
60
60
  - cimg/ruby:3.1
61
61
  - circleci/jruby:9.2
62
62
  - circleci/jruby:9.3
63
+ - circleci/jruby:9.4
@@ -58,7 +58,11 @@ module ActionSubscriber
58
58
  when ENV['APP_NAME'] then
59
59
  ENV['APP_NAME'].to_s.dup
60
60
  when defined?(::Rails) then
61
- ::Rails.application.class.parent_name.dup
61
+ if ::Rails.application.class.respond_to?(:module_parent_name)
62
+ ::Rails.application.class.module_parent_name.dup
63
+ else
64
+ ::Rails.application.class.parent_name.dup
65
+ end
62
66
  else
63
67
  raise "Define an application name (ENV['APP_NAME'])"
64
68
  end
@@ -35,7 +35,11 @@ module ActionSubscriber
35
35
  when ENV['APP_NAME'] then
36
36
  ENV['APP_NAME'].to_s.dup
37
37
  when defined?(::Rails) then
38
- ::Rails.application.class.parent_name.dup
38
+ if ::Rails.application.class.respond_to?(:module_parent_name)
39
+ ::Rails.application.class.module_parent_name.dup
40
+ else
41
+ ::Rails.application.class.parent_name.dup
42
+ end
39
43
  else
40
44
  raise "Define an application name (ENV['APP_NAME'])"
41
45
  end
@@ -1,3 +1,3 @@
1
1
  module ActionSubscriber
2
- VERSION = "5.3.2"
2
+ VERSION = "5.3.3"
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: action_subscriber
3
3
  version: !ruby/object:Gem::Version
4
- version: 5.3.2
4
+ version: 5.3.3
5
5
  platform: java
6
6
  authors:
7
7
  - Brian Stien
@@ -12,7 +12,7 @@ authors:
12
12
  autorequire:
13
13
  bindir: bin
14
14
  cert_chain: []
15
- date: 2022-05-10 00:00:00.000000000 Z
15
+ date: 2022-12-13 00:00:00.000000000 Z
16
16
  dependencies:
17
17
  - !ruby/object:Gem::Dependency
18
18
  requirement: !ruby/object:Gem::Requirement
@@ -300,7 +300,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
300
300
  - !ruby/object:Gem::Version
301
301
  version: '0'
302
302
  requirements: []
303
- rubygems_version: 3.3.13
303
+ rubygems_version: 3.2.29
304
304
  signing_key:
305
305
  specification_version: 4
306
306
  summary: ActionSubscriber is a DSL that allows a rails app to consume messages from