ec2-i2cssh 0.6.2 → 0.7

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: d919d3e54c37a3d2bd86811f06745bd08b320808
4
- data.tar.gz: 381278c2ad69f908b9e48e767a1d6f4f7670db2a
3
+ metadata.gz: c09201bbd1419c9d7a88b387710b59389c96f4b5
4
+ data.tar.gz: 877a4cff55b64acbb94c92c6429bc9e9121be2bb
5
5
  SHA512:
6
- metadata.gz: 1bec4cc673c261aa7d8fa3f2a4b66510708edfa11ac96e61cb95d0251b9d4d73a13241f9aee2faf991cce6198e9cf69c822827bd127ef35c5f95ac0682ac5459
7
- data.tar.gz: 07135b7563eaef6a514769614ab0e77ee1127d9b4b41905d351be65d1cc1970ed233918e45ba27cd1b851d7faa0c613f8cf34a7ce5c806eeec3de2b6c16d15c6
6
+ metadata.gz: 66fe3d81f5457de2a59c1340315c41fe818d34a7b5e14e1b1051787f6e03e8dc52e97e94ec9e0d3c86c5dcb696c55252b5dfe233b696548d440698807acfafa0
7
+ data.tar.gz: 2f9fe78964310ebbd04b7d852919565948e4f8a34971c8a9632eade152d71c06f392f567085d79c5058708de99333ea4edafc6e982c883afd62a76e36886b555
data/README.md CHANGED
@@ -24,8 +24,8 @@ Note: Mac users with the latest version of XCode may run into a compilation err
24
24
 
25
25
  ## Usage
26
26
 
27
- $cluster -h
28
- Usage: cluster [-t TAGS] [-l USER] [-k KEY -s SECRET] [-r region]
27
+ $ec2-i2cssh -h
28
+ Usage: ec2-i2cssh [-t TAGS] [-l USER] [-k KEY -s SECRET] [-r region]
29
29
  -l, --login [USER] Log in with this user
30
30
  -t, --tags [TAGS] a 'space' sparated key value pair of tags and values (i.e. -t 'role=web,database environment=dev')
31
31
  -r, --region [REGION] AWS region
@@ -33,8 +33,8 @@ Note: Mac users with the latest version of XCode may run into a compilation err
33
33
  -p, --use-public-ip Use public IP (default false)
34
34
 
35
35
 
36
- $cluster -t Name=web,database #Connects to all web and database servers
37
- $cluster -t 'role=web,database environment=dev' #Connects to all web and database servers in the dev environment
36
+ $ec2-i2cssh -t Name=web,database #Connects to all web and database servers
37
+ $ec2-i2cssh -t 'role=web,database environment=dev' #Connects to all web and database servers in the dev environment
38
38
 
39
39
  ## Notes
40
40
 
@@ -10,7 +10,7 @@ options = {
10
10
  }
11
11
 
12
12
  OptionParser.new do |opts|
13
- opts.banner = "Usage: cluster [-t TAGS] [-l USER] [-k KEY -s SECRET] [-r region]"
13
+ opts.banner = "Usage: ec2-i2ssh [-t TAGS] [-l USER] [-k KEY -s SECRET] [-r region]"
14
14
 
15
15
  opts.on("-l", "--login [USER]", "Log in with this user") do |opt|
16
16
  options['user'] = opt
@@ -1,5 +1,5 @@
1
1
  module Ec2
2
2
  module Clusterssh
3
- VERSION = "0.6.2"
3
+ VERSION = "0.7"
4
4
  end
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: ec2-i2cssh
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.6.2
4
+ version: '0.7'
5
5
  platform: ruby
6
6
  authors:
7
7
  - Ber Zoidberg
@@ -70,7 +70,7 @@ description: Use instance tags to launch a I2CSSH session to multiple EC2 instan
70
70
  email:
71
71
  - ber.zoidberg@gmail.com
72
72
  executables:
73
- - cluster
73
+ - ec2-i2cssh
74
74
  extensions: []
75
75
  extra_rdoc_files: []
76
76
  files:
@@ -79,7 +79,7 @@ files:
79
79
  - LICENSE.txt
80
80
  - README.md
81
81
  - Rakefile
82
- - bin/cluster
82
+ - bin/ec2-i2cssh
83
83
  - ec2-i2cssh.gemspec
84
84
  - lib/ec2/clusterssh.rb
85
85
  - lib/ec2/clusterssh/version.rb