marathon_client 0.0.7 → 0.0.8
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/bin/marathon +3 -3
- data/lib/marathon/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: 7346f0cdfc6b0093c26b1b473dafcc7423059103
|
|
4
|
+
data.tar.gz: ccc9e7359493d17345e6539f4d9786b8999cc88b
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 3bd8518f484ecf9a56724876f885a122a5e38c9ef438ef4e456b1ff19306b113321cb1b37ceb64ed2a3303a603cd66eef154e9968002541e178cd5aea19afe1f
|
|
7
|
+
data.tar.gz: aaf8ccc171a93924d1bfe760f730fc8e555f2dfb7dff7e8f8cc011a908efc4f542dc23dbc427d39f0607f03549d13e7d66e2698f9c0af908868785089e09f4e3
|
data/bin/marathon
CHANGED
|
@@ -8,7 +8,7 @@ SUB_COMMANDS = %w[start stop scale list]
|
|
|
8
8
|
global_opts = Trollop.options do
|
|
9
9
|
version Marathon::VERSION
|
|
10
10
|
banner <<-EOS
|
|
11
|
-
Usage: marathon [command] [options]
|
|
11
|
+
Usage: marathon [global options] [command] [options]
|
|
12
12
|
|
|
13
13
|
Available commands:
|
|
14
14
|
|
|
@@ -36,8 +36,8 @@ cmd_opts = case cmd
|
|
|
36
36
|
opt :num_instances, 'The number of instances to run (default 1).', :short => '-n', :type => Integer
|
|
37
37
|
opt :cpus, 'The number of CPUs to give to this app, can be a fraction (default 1.0).', :short => '-c', :type => Float
|
|
38
38
|
opt :mem, 'The memory limit for this app, in MB, can be a fraction (default 10.0).', :short => '-m', :type => Float
|
|
39
|
-
opt :uri, 'URIs to download and unpack into the working directory.', :short => '-u', :type =>
|
|
40
|
-
opt :env, 'Environment variables to add to the process, as NAME=VALUE.', :short => '-e', :type =>
|
|
39
|
+
opt :uri, 'URIs to download and unpack into the working directory.', :short => '-u', :type => :strings
|
|
40
|
+
opt :env, 'Environment variables to add to the process, as NAME=VALUE.', :short => '-e', :type => :strings
|
|
41
41
|
end
|
|
42
42
|
when 'scale'
|
|
43
43
|
Trollop.options do
|
data/lib/marathon/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: marathon_client
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.0.
|
|
4
|
+
version: 0.0.8
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Tobi Knaup
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2013-
|
|
11
|
+
date: 2013-09-12 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: trollop
|