action_subscriber 5.3.1.pre-java → 5.3.2-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 +4 -4
- data/.circleci/config.yml +2 -1
- data/action_subscriber.gemspec +0 -1
- data/lib/action_subscriber/configuration.rb +2 -2
- data/lib/action_subscriber/version.rb +1 -1
- metadata +5 -19
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 800f9883cc51d3be5affb3f4b5158341bc72cb935c3f7590d0b5de7490843473
|
|
4
|
+
data.tar.gz: f60298846b87042791698c7900cd3d8769c9a1ab1b8d7ba521d3541d548ac977
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 481cb9ccf335b441fe4d5b50bed7be649a0722547662e51b266c7ab001f2a52b7de47b3fdae231f89dfe50747ca394f8a85a226ad53bd33e8b61680a51ed7ad8
|
|
7
|
+
data.tar.gz: 77d3bb7ce0da7975fadda3c0a18c93cf157a0b8792825a296637d90c6d6ee816fdbac7471c7e1086ac3755a6d0b5d6f2ffe652545484adb7c8d8b71285cb3dda
|
data/.circleci/config.yml
CHANGED
data/action_subscriber.gemspec
CHANGED
|
@@ -68,10 +68,10 @@ module ActionSubscriber
|
|
|
68
68
|
yaml_config = {}
|
|
69
69
|
absolute_config_path = ::File.expand_path(::File.join("config", "action_subscriber.yml"))
|
|
70
70
|
if ::File.exists?(absolute_config_path)
|
|
71
|
-
|
|
71
|
+
erb_yaml = ::ERB.new(::File.read(absolute_config_path)).result
|
|
72
72
|
# Defined in Psych 3.2+ and the new canonical way to load trusted documents:
|
|
73
73
|
# https://github.com/ruby/psych/issues/533#issuecomment-1019363688
|
|
74
|
-
yaml_config = ::YAML.unsafe_load(
|
|
74
|
+
yaml_config = ::YAML.respond_to?(:unsafe_load) ? ::YAML.unsafe_load(erb_yaml)[env] : ::YAML.load(erb_yaml)[env]
|
|
75
75
|
end
|
|
76
76
|
|
|
77
77
|
::ActionSubscriber::Configuration::DEFAULTS.each_pair do |key, value|
|
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.
|
|
4
|
+
version: 5.3.2
|
|
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-
|
|
15
|
+
date: 2022-05-10 00:00:00.000000000 Z
|
|
16
16
|
dependencies:
|
|
17
17
|
- !ruby/object:Gem::Dependency
|
|
18
18
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -70,20 +70,6 @@ dependencies:
|
|
|
70
70
|
- - ">="
|
|
71
71
|
- !ruby/object:Gem::Version
|
|
72
72
|
version: '0'
|
|
73
|
-
- !ruby/object:Gem::Dependency
|
|
74
|
-
requirement: !ruby/object:Gem::Requirement
|
|
75
|
-
requirements:
|
|
76
|
-
- - ">="
|
|
77
|
-
- !ruby/object:Gem::Version
|
|
78
|
-
version: 3.3.2
|
|
79
|
-
name: psych
|
|
80
|
-
prerelease: false
|
|
81
|
-
type: :runtime
|
|
82
|
-
version_requirements: !ruby/object:Gem::Requirement
|
|
83
|
-
requirements:
|
|
84
|
-
- - ">="
|
|
85
|
-
- !ruby/object:Gem::Version
|
|
86
|
-
version: 3.3.2
|
|
87
73
|
- !ruby/object:Gem::Dependency
|
|
88
74
|
requirement: !ruby/object:Gem::Requirement
|
|
89
75
|
requirements:
|
|
@@ -310,11 +296,11 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
|
310
296
|
version: '0'
|
|
311
297
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
312
298
|
requirements:
|
|
313
|
-
- - "
|
|
299
|
+
- - ">="
|
|
314
300
|
- !ruby/object:Gem::Version
|
|
315
|
-
version:
|
|
301
|
+
version: '0'
|
|
316
302
|
requirements: []
|
|
317
|
-
rubygems_version: 3.3.
|
|
303
|
+
rubygems_version: 3.3.13
|
|
318
304
|
signing_key:
|
|
319
305
|
specification_version: 4
|
|
320
306
|
summary: ActionSubscriber is a DSL that allows a rails app to consume messages from
|