ec2-ssh 1.0.4 → 1.0.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.
Files changed (4) hide show
  1. checksums.yaml +4 -4
  2. data/lib/ec2-ssh/cli.rb +1 -1
  3. data/lib/ec2-ssh.rb +1 -1
  4. metadata +1 -1
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: afbba5cbe939567b1f63393203a199dc4dfb6af0
4
- data.tar.gz: cba9421b063dc23950abe74b9c9bd0dbfda48416
3
+ metadata.gz: 8168af1501cc0643e43963625e266952a5172fe7
4
+ data.tar.gz: 91e9b473285a1e34bff1f146406ffe15a23311f6
5
5
  SHA512:
6
- metadata.gz: 67f9050141bc3e1dd5276bd2b016b33192721360cfca46b3cf58062a62d7ac6ee63310eee3f1c9c73ee68915c84dd5a37ea066b9280e844d9134501f42e42d83
7
- data.tar.gz: 722989fab66908b5124737b66584e925f3b27569d420057d2af768a77629d245f31bc8b0e403a37526f9ece5f4eff610ea1fac451667ce644dfb9417c3ee520a
6
+ metadata.gz: 3e939f79353b3e65ea1aa154deae31c40a9b03d6885f8eb77663f25c279bc2b3b17b829da68acc9a4207bfaf09bdb77839304dc64f8f7af7f0dd218f3af52590
7
+ data.tar.gz: dbdb11cc3686aa6f1f1833570bd08edcb79a6afb60365bfa86f668725bdbd36f3e64f083819eadc70aea8e47999bee3ea1eafddba4f758cdf43f237542c4aafb
data/lib/ec2-ssh/cli.rb CHANGED
@@ -18,7 +18,7 @@ class Ec2Ssh::Cli < Thor
18
18
 
19
19
  desc "connect", "Connect to autoscale instance (random instance), Pass --cmd='whatever' to run a cmd on the server (use ; to seperate commands)"
20
20
  method_option :cmd, :desc => 'commmand to run on remote servers'
21
- method_option :profile, :desc => 'aws cli profile', :default => 'default'
21
+ method_option :profile, :desc => 'Aws cli profile name as listed in ~/aws/credentials', :default => 'default'
22
22
  method_option :region, :desc => "region", :default => 'us-east-1'
23
23
  method_option :user, :aliases => 'u', :desc => 'run as user', :default => 'ec2-user'
24
24
  method_option :parallel, :aliases => 'p', :desc => 'run in parallel'
data/lib/ec2-ssh.rb CHANGED
@@ -1,5 +1,5 @@
1
1
  module Ec2Ssh
2
- VERSION = "1.0.4"
2
+ VERSION = "1.0.5"
3
3
  ABOUT = "ec2-ssh v#{VERSION} (c) #{Time.now.strftime("2015-%Y")} @innovia"
4
4
 
5
5
  $:.unshift File.expand_path(File.join(File.dirname(__FILE__), %w[.. lib]))
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: ec2-ssh
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.4
4
+ version: 1.0.5
5
5
  platform: ruby
6
6
  authors:
7
7
  - Ami Mahloof