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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: d23da6e1aee97530773a60aafdb8f521b5b59685
4
- data.tar.gz: d2558688f61f529f8ea19e0a5d902e0e6d558bf6
3
+ metadata.gz: 421cba4c1e08c2f0a0e915b0ba98a6ab18a726ee
4
+ data.tar.gz: 7458e51782caa425498889ff6e7db532707bc154
5
5
  SHA512:
6
- metadata.gz: ff04d18f0ae2d91cf6b79811e1390848ddf3ba070a459b924a2e93766bcbd460ddb49520a0fa0d51a3a2f9486f581d04bc560c1dbd4397ebbd4e4617b8371982
7
- data.tar.gz: da630e751c5a614bf13a70f992d4025782741a80db0e7c0ba5ade16ea62ea5c131709fc4aa1e20084dcc6bc9a380b331c8dff16c70014c223bfc1bdfefed8f70
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|
@@ -1,4 +1,4 @@
1
1
  module Bricolage
2
2
  APPLICATION_NAME = 'Bricolage'
3
- VERSION = '5.22.1'
3
+ VERSION = '5.22.2'
4
4
  end
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: ../..
3
3
  specs:
4
- bricolage (5.22.1)
4
+ bricolage (5.22.2)
5
5
  aws-sdk (~> 2)
6
6
  mysql2
7
7
  pg (~> 0.18.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.22.1
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-17 00:00:00.000000000 Z
11
+ date: 2017-01-18 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: pg