action_subscriber 5.1.1.pre0-java → 5.1.2-java
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +5 -5
- data/lib/action_subscriber/configuration.rb +6 -1
- data/lib/action_subscriber/version.rb +1 -1
- metadata +5 -5
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
|
-
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
2
|
+
SHA1:
|
3
|
+
metadata.gz: 20e6d78577bea4f489547fcca7954f40868ae862
|
4
|
+
data.tar.gz: 4be4767ef821deecf38300f4c586b9f3eb1c5a2c
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: d50843c6fa2dc8c67c83afe1776cd970ff7fa98011adeb990b3e800782418f1065e6e82acdb363a42b46e9a6e2114d43862806790881c536615a409d15ee8a61
|
7
|
+
data.tar.gz: 2faf727da5af9999cc8cbdf4d309c4994ca08987a54cc41b9d6a4a62d94d2386b74b7820e734710669ebb76dd097499c3be3e4a61b9e6ab2181990a14c861bc3
|
@@ -66,7 +66,12 @@ module ActionSubscriber
|
|
66
66
|
yaml_config = {}
|
67
67
|
absolute_config_path = ::File.expand_path(::File.join("config", "action_subscriber.yml"))
|
68
68
|
if ::File.exists?(absolute_config_path)
|
69
|
-
|
69
|
+
erb = ::ERB.new(::File.read(absolute_config_path)).result
|
70
|
+
if defined?(SafeYAML)
|
71
|
+
yaml_config = ::YAML.load(erb, :safe => true)[env]
|
72
|
+
else
|
73
|
+
yaml_config = ::YAML.load(erb)[env]
|
74
|
+
end
|
70
75
|
end
|
71
76
|
|
72
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.1.
|
4
|
+
version: 5.1.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: 2018-
|
15
|
+
date: 2018-07-26 00:00:00.000000000 Z
|
16
16
|
dependencies:
|
17
17
|
- !ruby/object:Gem::Dependency
|
18
18
|
requirement: !ruby/object:Gem::Requirement
|
@@ -292,12 +292,12 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
292
292
|
version: '0'
|
293
293
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
294
294
|
requirements:
|
295
|
-
- - "
|
295
|
+
- - ">="
|
296
296
|
- !ruby/object:Gem::Version
|
297
|
-
version:
|
297
|
+
version: '0'
|
298
298
|
requirements: []
|
299
299
|
rubyforge_project:
|
300
|
-
rubygems_version: 2.6.
|
300
|
+
rubygems_version: 2.6.14.1
|
301
301
|
signing_key:
|
302
302
|
specification_version: 4
|
303
303
|
summary: ActionSubscriber is a DSL that allows a rails app to consume messages from
|