bricolage 5.24.1 → 5.24.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/lib/bricolage/application.rb +3 -4
- data/lib/bricolage/version.rb +1 -1
- data/test/home/Gemfile.lock +7 -7
- 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: 593e33c7e02661fc8769f5d1f5118415ea59b52b
|
|
4
|
+
data.tar.gz: e0f9c04913dccb58723308841150e4a2a129462b
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 54b569b9721ad2a8e7340cc7570a739aaba51f31e24d8440bcfa295d50734cc8fb33050451d2433df58828bfd9344bae85507e96c21475854d60bf79eafa68ca
|
|
7
|
+
data.tar.gz: 1137ac538ab8e5bf9b2736100441946dd872154b8c3246236abd70e08d7192e7295c907823cf80f5d673abd1c1d13a4076db4965554e5c6c7a8a16f52ff5d1a0
|
|
@@ -258,9 +258,9 @@ module Bricolage
|
|
|
258
258
|
end
|
|
259
259
|
|
|
260
260
|
def log_path_format
|
|
261
|
-
if opt = @opts['log-dir']
|
|
261
|
+
if opt = @opts['log-dir'] and opt.value
|
|
262
262
|
LogFilePath.new("#{opt.value}/%{std}.log")
|
|
263
|
-
elsif opt = @opts['log-path']
|
|
263
|
+
elsif opt = @opts['log-path'] and opt.value
|
|
264
264
|
LogFilePath.new(opt.value)
|
|
265
265
|
else
|
|
266
266
|
nil
|
|
@@ -277,8 +277,7 @@ module Bricolage
|
|
|
277
277
|
|
|
278
278
|
def s3_log_spec
|
|
279
279
|
@s3_log_spec ||=
|
|
280
|
-
if opt = @opts['s3-log']
|
|
281
|
-
spec = opt.value
|
|
280
|
+
if opt = @opts['s3-log'] and spec = opt.value
|
|
282
281
|
ds, k = spec.split(':', 2)
|
|
283
282
|
k = k.to_s.strip
|
|
284
283
|
key = k.empty? ? nil : k
|
data/lib/bricolage/version.rb
CHANGED
data/test/home/Gemfile.lock
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
PATH
|
|
2
2
|
remote: ../..
|
|
3
3
|
specs:
|
|
4
|
-
bricolage (5.24.
|
|
4
|
+
bricolage (5.24.2)
|
|
5
5
|
aws-sdk (~> 2)
|
|
6
6
|
mysql2
|
|
7
7
|
pg (~> 0.18.0)
|
|
@@ -10,18 +10,18 @@ PATH
|
|
|
10
10
|
GEM
|
|
11
11
|
remote: https://rubygems.org/
|
|
12
12
|
specs:
|
|
13
|
-
aws-sdk (2.10.
|
|
14
|
-
aws-sdk-resources (= 2.10.
|
|
15
|
-
aws-sdk-core (2.10.
|
|
13
|
+
aws-sdk (2.10.9)
|
|
14
|
+
aws-sdk-resources (= 2.10.9)
|
|
15
|
+
aws-sdk-core (2.10.9)
|
|
16
16
|
aws-sigv4 (~> 1.0)
|
|
17
17
|
jmespath (~> 1.0)
|
|
18
|
-
aws-sdk-resources (2.10.
|
|
19
|
-
aws-sdk-core (= 2.10.
|
|
18
|
+
aws-sdk-resources (2.10.9)
|
|
19
|
+
aws-sdk-core (= 2.10.9)
|
|
20
20
|
aws-sigv4 (1.0.0)
|
|
21
21
|
coderay (1.1.1)
|
|
22
22
|
jmespath (1.3.1)
|
|
23
23
|
method_source (0.8.2)
|
|
24
|
-
mysql2 (0.4.
|
|
24
|
+
mysql2 (0.4.8)
|
|
25
25
|
pg (0.18.4)
|
|
26
26
|
pry (0.10.4)
|
|
27
27
|
coderay (~> 1.1.0)
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: bricolage
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 5.24.
|
|
4
|
+
version: 5.24.2
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Minero Aoki
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2017-07-
|
|
11
|
+
date: 2017-07-12 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: pg
|