marathon_client 0.0.7 → 0.0.8

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 6c9e596d1d9a22eed7059f0abcb32e19a5f09bf3
4
- data.tar.gz: f454fed66fad61cc4aa9c3a20564c014ca2c3e75
3
+ metadata.gz: 7346f0cdfc6b0093c26b1b473dafcc7423059103
4
+ data.tar.gz: ccc9e7359493d17345e6539f4d9786b8999cc88b
5
5
  SHA512:
6
- metadata.gz: aaee3ee5f3221bddcce683faf3f4aee1afbc1946c7f149160d15661a29394eb9d35eb337c432026a3852bda70edc313df4de94f473ca1eac7dbf4e39565e84b6
7
- data.tar.gz: 9e0aaf7370257182cf9062f94b650a4490d4da57d88c45738d92dd1e580d636a1d44cd539d6e70c80083ec1c0fdd01da20a840303d79e73fae4c6119e72afa76
6
+ metadata.gz: 3bd8518f484ecf9a56724876f885a122a5e38c9ef438ef4e456b1ff19306b113321cb1b37ceb64ed2a3303a603cd66eef154e9968002541e178cd5aea19afe1f
7
+ data.tar.gz: aaf8ccc171a93924d1bfe760f730fc8e555f2dfb7dff7e8f8cc011a908efc4f542dc23dbc427d39f0607f03549d13e7d66e2698f9c0af908868785089e09f4e3
@@ -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 => Array
40
- opt :env, 'Environment variables to add to the process, as NAME=VALUE.', :short => '-e', :type => Array
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
@@ -1,3 +1,3 @@
1
1
  module Marathon
2
- VERSION = "0.0.7"
2
+ VERSION = "0.0.8"
3
3
  end
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.7
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-08-24 00:00:00.000000000 Z
11
+ date: 2013-09-12 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: trollop