ocean-rails 1.23.6 → 1.23.7
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 +1 -2
- 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: d2697df8c214b9b41bf15dbb1be550ec42d10cca
|
4
|
+
data.tar.gz: 328a234b5380d163362588b56e2747cb41c17ec3
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 295d7b58f2807d27518df08596572ff02e6c4094e551004641465453862e85850e3dcdf53672338a2a0662dc54d50c85c9e223e4e22372584d5e8428e98ca41c
|
7
|
+
data.tar.gz: e564ab952407cf3f4fdebaaf982b06506276dce0d070eeabe4d2fa4395e0ac9463c17d64490cd8988308a06f8cb428cadec18122920a978fb0e570112db54b97
|
@@ -14,9 +14,8 @@ 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)
|
18
17
|
unless File.exists?(f)
|
19
|
-
f =
|
18
|
+
f = ENV['OCEAN_API_HOST'] ? ef : false
|
20
19
|
end
|
21
20
|
|
22
21
|
puts "--- LOADING #{f}"
|
data/lib/ocean/version.rb
CHANGED