ocean-rails 1.23.4 → 1.23.5
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 +4 -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: 1d17383e034c09b767a8b44a4f8f597e3b0b95c2
|
4
|
+
data.tar.gz: 850e5b1ebc940f5b8ffa45af294ddb86a5a14dc8
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 16397a0a944d6a565582d46504ebc98e2e39851c9e1f59a2ec8c271bfa71aba39b8dcc2661a7e3f6c08a4bee357eebba32fd309290c6f1b3d80624e166cbe58f
|
7
|
+
data.tar.gz: d6473a4a52c58da9b8a296befdf8062d1e16e2a972897343004a0fbf0f4939e4e4f4a48055146eb727e5e7b40e6840c8133c60228b7a0e603305425d4cc90cee
|
@@ -14,7 +14,10 @@ if File.exists?(ef)
|
|
14
14
|
|
15
15
|
# If the tailored file doesn't exist, and we're running in test mode
|
16
16
|
# (which is the case under TeamCity), use the example file as-is.
|
17
|
-
f = (File.exists?(f) && f) || ef # ((Rails.env == 'test') && ef)
|
17
|
+
#f = (File.exists?(f) && f) || ef # ((Rails.env == 'test') && ef)
|
18
|
+
unless File.exists?(f)
|
19
|
+
f = Rails.env == 'test' ? ef : false
|
20
|
+
end
|
18
21
|
|
19
22
|
puts "--- LOADING #{f}"
|
20
23
|
puts
|
data/lib/ocean/version.rb
CHANGED