action_subscriber 5.3.1 → 5.3.2
Sign up to get free protection for your applications and to get access to all the features.
- 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 +3 -17
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 1104ecc3908906826c8b76f58d636344b13386a467daf0a15cb7235be37e1698
|
4
|
+
data.tar.gz: ee2e6f6992dbebf74bf7a5e474cd0c330789fa6c8157a4877d4c347ce9feea1c
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 19e908e2aa6e240b426cd453bdd1f76330a853988525ef517752ea923162762633ae193a7f0c0bfc5fd093271fe2b020792a5132bdbf9f3b08537ebe574f4322
|
7
|
+
data.tar.gz: 0a8b9f2851aff981f1b6e8f62902de33e6c13fd90ad0e747d44bdf4b5d65be8cafdedf174a0d7c0f39fe76783050c62c6c6b6b618f0b92edca07a4bd3f822ded
|
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: ruby
|
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-
|
15
|
+
date: 2022-05-10 00:00:00.000000000 Z
|
16
16
|
dependencies:
|
17
17
|
- !ruby/object:Gem::Dependency
|
18
18
|
name: activesupport
|
@@ -70,20 +70,6 @@ dependencies:
|
|
70
70
|
- - ">="
|
71
71
|
- !ruby/object:Gem::Version
|
72
72
|
version: '0'
|
73
|
-
- !ruby/object:Gem::Dependency
|
74
|
-
name: psych
|
75
|
-
requirement: !ruby/object:Gem::Requirement
|
76
|
-
requirements:
|
77
|
-
- - ">="
|
78
|
-
- !ruby/object:Gem::Version
|
79
|
-
version: 3.3.2
|
80
|
-
type: :runtime
|
81
|
-
prerelease: false
|
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
|
name: thor
|
89
75
|
requirement: !ruby/object:Gem::Requirement
|
@@ -314,7 +300,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
314
300
|
- !ruby/object:Gem::Version
|
315
301
|
version: '0'
|
316
302
|
requirements: []
|
317
|
-
rubygems_version: 3.3.
|
303
|
+
rubygems_version: 3.3.7
|
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
|