ocean-rails 1.23.3 → 1.23.4
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/config/initializers/api_constants.rb +2 -1
- data/lib/ocean/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 277750dcf7a8f455eef86e7220f657a879266531
|
4
|
+
data.tar.gz: f7608d6fc75ad78d094fd7b98dbdce8b8632c1e1
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 22cb03fdba12ecdbf78db0c3067b94826c29f3ad29b6734e583ab913d552d41f662161e2a67768f8373099ffa1dbbbdad0ecb9252244cefb2aff696a77128bdb
|
7
|
+
data.tar.gz: cdbc32396b3931296554dec7b858efd71e8b59faa210dce131995c21c429c644af428a69da439dea79ce2cb7a10e07286280c6cc5b1f6e47c7ca131e6c67275a
|
@@ -8,12 +8,13 @@ if File.exists?(ef)
|
|
8
8
|
f = File.join(Rails.root, "config/config.yml")
|
9
9
|
|
10
10
|
puts
|
11
|
+
puts "--- Rails.env = #{Rails.env}"
|
11
12
|
puts "--- ef = #{ef}"
|
12
13
|
puts "--- f = #{f}"
|
13
14
|
|
14
15
|
# If the tailored file doesn't exist, and we're running in test mode
|
15
16
|
# (which is the case under TeamCity), use the example file as-is.
|
16
|
-
f = (File.exists?(f) && f) || ((Rails.env == 'test') && ef)
|
17
|
+
f = (File.exists?(f) && f) || ef # ((Rails.env == 'test') && ef)
|
17
18
|
|
18
19
|
puts "--- LOADING #{f}"
|
19
20
|
puts
|
data/lib/ocean/version.rb
CHANGED