bricolage 5.22.1 → 5.22.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 +1 -1
- data/lib/bricolage/jobnetrunner.rb +2 -2
- data/lib/bricolage/version.rb +1 -1
- data/test/home/Gemfile.lock +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: 421cba4c1e08c2f0a0e915b0ba98a6ab18a726ee
|
|
4
|
+
data.tar.gz: 7458e51782caa425498889ff6e7db532707bc154
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 359a1e98d6a75a5f4102b9ebe9478868cdcecbf6e3cc73856a53a83a722f879d72340f56e0dc10f8f82d3a5b1023d0b8bfb7d5a55e3a337847db4646980d0984
|
|
7
|
+
data.tar.gz: 05b59b3de45b25baa445391d710786fd18a91aaff0c614015d619863e2e749cd48db6f63ceeb4c49790ad78f4c07c6e7d9a8c42012cb06dd71f0339d4daae8f6
|
|
@@ -220,7 +220,7 @@ Global Options:
|
|
|
220
220
|
parser.on('-E', '--explain', 'Applies EXPLAIN to the SQL.') {
|
|
221
221
|
@explain = true
|
|
222
222
|
}
|
|
223
|
-
parser.on('--log-dir=PATH', 'Log file prefix.') {|path|
|
|
223
|
+
parser.on('-L', '--log-dir=PATH', 'Log file prefix.') {|path|
|
|
224
224
|
@log_path = LogFilePath.new("#{path}/%{std}.log")
|
|
225
225
|
}
|
|
226
226
|
parser.on('--log-path=PATH', 'Log file path template.') {|path|
|
|
@@ -248,7 +248,7 @@ Options:
|
|
|
248
248
|
parser.on('-e', '--environment=NAME', "Sets execution environment. [default: #{Context::DEFAULT_ENV}]") {|env|
|
|
249
249
|
@environment = env
|
|
250
250
|
}
|
|
251
|
-
parser.on('--log-dir=PATH', 'Log file prefix.') {|path|
|
|
251
|
+
parser.on('-L', '--log-dir=PATH', 'Log file prefix.') {|path|
|
|
252
252
|
@log_path = LogFilePath.new("#{path}/%{std}.log")
|
|
253
253
|
}
|
|
254
254
|
parser.on('--log-path=PATH', 'Log file path template.') {|path|
|
|
@@ -257,7 +257,7 @@ Options:
|
|
|
257
257
|
parser.on('--local-state-dir=PATH', 'Stores local state in this path.') {|path|
|
|
258
258
|
@local_state_dir = Pathname(path)
|
|
259
259
|
}
|
|
260
|
-
parser.on('--enable-queue', 'Enables job queue.') {
|
|
260
|
+
parser.on('-Q', '--enable-queue', 'Enables job queue.') {
|
|
261
261
|
@enable_queue = true
|
|
262
262
|
}
|
|
263
263
|
parser.on('--queue-path=PATH', 'Enables job queue with this path.') {|path|
|
data/lib/bricolage/version.rb
CHANGED
data/test/home/Gemfile.lock
CHANGED
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.22.
|
|
4
|
+
version: 5.22.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-01-
|
|
11
|
+
date: 2017-01-18 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: pg
|