sauce 0.12.5 → 0.12.6

Sign up to get free protection for your applications and to get access to all the features.
Files changed (4) hide show
  1. data/VERSION +1 -1
  2. data/bin/sauce +7 -2
  3. data/sauce.gemspec +1 -1
  4. metadata +3 -3
data/VERSION CHANGED
@@ -1 +1 @@
1
- 0.12.5
1
+ 0.12.6
data/bin/sauce CHANGED
@@ -24,11 +24,16 @@ else
24
24
  cmd.add_command(CmdParse::HelpCommand.new)
25
25
 
26
26
  # configure
27
- configure = CmdParse::Command.new('configure', false)
27
+ class ConfigureCommand < CmdParse::Command
28
+ def usage
29
+ "Usage: #{commandparser.program_name}configure USERNAME ACCESS_KEY"
30
+ end
31
+ end
32
+ configure = ConfigureCommand.new('configure', false)
28
33
  configure.short_desc = "Configure Sauce OnDemand credentials"
29
34
  configure.set_execution_block do |args|
30
35
  if args.length < 2:
31
- puts "Usage: sauce configure USERNAME ACCESS_KEY"
36
+ puts configure.usage
32
37
  exit 1
33
38
  end
34
39
  username = args[0]
@@ -5,7 +5,7 @@
5
5
 
6
6
  Gem::Specification.new do |s|
7
7
  s.name = %q{sauce}
8
- s.version = "0.12.5"
8
+ s.version = "0.12.6"
9
9
 
10
10
  s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
11
11
  s.authors = ["Sean Grove", "Eric Allen", "Steven Hazel"]
metadata CHANGED
@@ -1,13 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: sauce
3
3
  version: !ruby/object:Gem::Version
4
- hash: 37
4
+ hash: 35
5
5
  prerelease: false
6
6
  segments:
7
7
  - 0
8
8
  - 12
9
- - 5
10
- version: 0.12.5
9
+ - 6
10
+ version: 0.12.6
11
11
  platform: ruby
12
12
  authors:
13
13
  - Sean Grove