ocean-rails 1.23.1 → 1.23.2
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 -1
- data/config/initializers/aws_constants.rb +1 -1
- data/lib/ocean/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: 339c17156fe27a67f4257d0dc48e1a4a19a89ca6
|
4
|
+
data.tar.gz: 9d7612bfff118680211a13efbad8d3b0be498b55
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 61ef6f820e72f440d8f9e085c3eb62e58fe1777fdf42596cf7cc9b9aa3d9afdcf678304bcd685871e62bc8908ac375a9bd2f01f9f8e20b82db373f12f1f411fb
|
7
|
+
data.tar.gz: 59b7a722e32fc4d85d5c3badaab57b1e00258f28e0792577216ac173178ece0555745941e82fdef9e7094154fa17dedeb94504649daa7f68584220ec35d971bf
|
@@ -8,7 +8,7 @@ if File.exists?(ef)
|
|
8
8
|
f = File.join(Rails.root, "config/config.yml")
|
9
9
|
# If the tailored file doesn't exist, and we're running in production mode
|
10
10
|
# (which is the case under TeamCity), use the example file as-is.
|
11
|
-
f = File.exists?(f) && f || Rails.env
|
11
|
+
f = File.exists?(f) && f || Rails.env != 'development' && ef
|
12
12
|
|
13
13
|
# If there is a file to process, do so
|
14
14
|
if f
|
@@ -9,7 +9,7 @@ if File.exists?(ef)
|
|
9
9
|
f = File.join(Rails.root, "config/aws.yml")
|
10
10
|
# If the tailored file doesn't exist, and we're running in production mode
|
11
11
|
# (which is the case under TeamCity), use the example file as-is.
|
12
|
-
f = File.exists?(f) && f || Rails.env
|
12
|
+
f = File.exists?(f) && f || Rails.env != 'development' && ef
|
13
13
|
|
14
14
|
# If there is a file to process, do so
|
15
15
|
if f
|
data/lib/ocean/version.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: ocean-rails
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.23.
|
4
|
+
version: 1.23.2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Peter Bengtson
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2013-
|
11
|
+
date: 2013-11-01 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: faraday
|