unicorn-ctl 0.1.4 → 0.1.5
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/CHANGELOG.md +4 -0
- data/bin/unicornctl +3 -3
- 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: 6493e6ab1f002e3e8e334c403e29a5ec3e3552a1
|
|
4
|
+
data.tar.gz: 48acfe52ffe52808933727b864c5b86e8f59f058
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 178cafb7c8f6914d1f6e877269df0a15775919b08181b44f7dc5cbeb2475216137321884e80242b269abf5fa8883f75da8709a6b5e25108a7bc2e87b3f3fd49f
|
|
7
|
+
data.tar.gz: d070792765a6f0fc0ac1faf0638e24b46f68c84ab98a48c85e24d534f7d4fd91c02e66494814abe24fb858ba2899f6e1c88db03a3624b3cf4f7a8aca656ad8ee
|
data/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,9 @@
|
|
|
1
1
|
## UnicornCtl Changelog
|
|
2
2
|
|
|
3
|
+
### 0.1.5 / 2014-02-21
|
|
4
|
+
|
|
5
|
+
* Fix --unicorn-config/--rackup-config/--pid-file options handling.
|
|
6
|
+
|
|
3
7
|
### 0.1.4 / 2014-02-20
|
|
4
8
|
|
|
5
9
|
* Add a wait period after upgrade/start to make sure new master has a chance to start before we perform a health check on it.
|
data/bin/unicornctl
CHANGED
|
@@ -482,9 +482,9 @@ opts = GetoptLong.new(
|
|
|
482
482
|
[ '--health-check-timeout', '-T', GetoptLong::REQUIRED_ARGUMENT ],
|
|
483
483
|
[ '--start-wait', '-w', GetoptLong::REQUIRED_ARGUMENT ],
|
|
484
484
|
[ '--timeout', '-t', GetoptLong::REQUIRED_ARGUMENT ],
|
|
485
|
-
[ '--unicorn-config
|
|
486
|
-
[ '--rackup-config
|
|
487
|
-
[ '--pid-file
|
|
485
|
+
[ '--unicorn-config', '-c', GetoptLong::REQUIRED_ARGUMENT ],
|
|
486
|
+
[ '--rackup-config', '-r', GetoptLong::REQUIRED_ARGUMENT ],
|
|
487
|
+
[ '--pid-file', '-p', GetoptLong::REQUIRED_ARGUMENT ],
|
|
488
488
|
[ '--watch-proctitle', '-W', GetoptLong::NO_ARGUMENT ],
|
|
489
489
|
[ '--rainbows', '-R', GetoptLong::NO_ARGUMENT ],
|
|
490
490
|
[ '--help', '-h', GetoptLong::NO_ARGUMENT ]
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: unicorn-ctl
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.1.
|
|
4
|
+
version: 0.1.5
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Oleksiy Kovyrin
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2014-02-
|
|
11
|
+
date: 2014-02-22 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: httparty
|