active_publisher 0.1.1-java → 0.1.2-java
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/lib/active_publisher/configuration.rb +2 -2
- data/lib/active_publisher/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 2dc3638db5f4f488b85ce18e66f38bd3f31903d6
|
4
|
+
data.tar.gz: 313e9707d71e2a8a3bba6e355d653c00b0e1354b
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 952edb4b0352972c175b2537bb5e19f74b035bfb56f7f187926996ca20861151bda44d326df8fdf0cee5e88917bce94307df5e0198ed28cfff2093d7bea8b081
|
7
|
+
data.tar.gz: 2fade917b2ee261d64756cc740150f1b3947fffa3a4c3899da0417f59110818b149824fa32960c1c99d4ec857197d88c662c6b03c480da341560c60f25c6c2e6
|
@@ -43,7 +43,7 @@ module ActivePublisher
|
|
43
43
|
@configure_from_yaml_and_cli ||= begin
|
44
44
|
env = ENV["RAILS_ENV"] || ENV["RACK_ENV"] || ENV["APP_ENV"] || "development"
|
45
45
|
|
46
|
-
yaml_config = attempt_to_load_yaml_file
|
46
|
+
yaml_config = attempt_to_load_yaml_file(env)
|
47
47
|
DEFAULTS.each_pair do |key, value|
|
48
48
|
setting = cli_options[key] || yaml_config[key.to_s]
|
49
49
|
::ActivePublisher.config.__send__("#{key}=", setting) if setting
|
@@ -57,7 +57,7 @@ module ActivePublisher
|
|
57
57
|
##
|
58
58
|
# Private class methods
|
59
59
|
#
|
60
|
-
def self.attempt_to_load_yaml_file
|
60
|
+
def self.attempt_to_load_yaml_file(env)
|
61
61
|
yaml_config = {}
|
62
62
|
absolute_config_path = ::File.expand_path(::File.join("config", "active_publisher.yml"))
|
63
63
|
action_subscriber_config_file = ::File.expand_path(::File.join("config", "action_subscriber.yml"))
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: active_publisher
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1.
|
4
|
+
version: 0.1.2
|
5
5
|
platform: java
|
6
6
|
authors:
|
7
7
|
- Brian Stien
|
@@ -12,7 +12,7 @@ authors:
|
|
12
12
|
autorequire:
|
13
13
|
bindir: exe
|
14
14
|
cert_chain: []
|
15
|
-
date: 2016-
|
15
|
+
date: 2016-04-01 00:00:00.000000000 Z
|
16
16
|
dependencies:
|
17
17
|
- !ruby/object:Gem::Dependency
|
18
18
|
requirement: !ruby/object:Gem::Requirement
|