awsssh 2.2.0 → 2.2.1

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: 4b63fb129a41f40f706decc85cd615a650050d9c
4
- data.tar.gz: 65d9e9f45738dd2a61dbc6340213e5306a7067fa
3
+ metadata.gz: aae75e397dafa1e5732725d9d2453d366ef6712c
4
+ data.tar.gz: b05d331e27a887e9ca1daa60079c4c522bac13be
5
5
  SHA512:
6
- metadata.gz: 0c4f6daf66995d090eccdc8748f0485816a5153e494c2ceeceef62928b2247d1ff282ca913e614f89b44423d370ca3ed294b3fb0b2358d49e5b41531f5cba50a
7
- data.tar.gz: 99afa2c0f438f16472e39162ca15fcfd292ca06f0560d32804c93f821ad9a04cefc250fb00c3fa35ff2d061508f889daf57d615ebe18cbb3302c106e11ca3873
6
+ metadata.gz: c68ab3b97533d60aecedf9cd953fb1e24540ef1089a361cb83b24c2fa78ca7a87a7bd695f804ef7ce315fc83b21ffa627d99dd888c87369e6624cbe3cb2cff69
7
+ data.tar.gz: 1ef323cadf3a5629bbdbad9b74bdffbdd18b60a18d09d906a96641b8374130339bf7d3e24c1f356b66533044e2c261a690c59242b7172bc260c1cfd6f17cd246
data/README.md CHANGED
@@ -34,6 +34,9 @@ Zeigt die Hilfe an
34
34
  Sebastian Thiele Twitter: (@sebat)
35
35
 
36
36
  ## Changelog
37
+ **2015-03-02 - v 2.2.1**
38
+ * [add] Version information
39
+
37
40
  **2015-03-02 - v 2.2.0**
38
41
  * [enh] Alias for list servers and accounts changed
39
42
  * [fix] Build own punlic DNS if no public dns is set
@@ -16,6 +16,7 @@ module Awsssh
16
16
  option :account, :aliases => '-a', :desc => "Specify a account for a connection. Needet if the account don't came from the server name"
17
17
  option :list, :aliases => '-l', :desc => "List any items use with -s for Servers or -a ACCOUNT for accounts", :type => :boolean
18
18
  option :check, :aliases => '-c', :desc => "Alerts when -c STATE comes up for -s SERVER"
19
+ option :version, :aliases => '-v', :desc => "Version"
19
20
  long_desc <<-LONGDESC
20
21
  # Connect to a Server:
21
22
 
@@ -46,6 +47,8 @@ module Awsssh
46
47
  list_servers(options[:server])
47
48
  elsif options[:server]
48
49
  connecting(options[:server], options[:account])
50
+ elsif options[:version]
51
+ puts VERSION
49
52
  else
50
53
  help "connect"
51
54
  end
@@ -1,3 +1,3 @@
1
1
  module Awsssh
2
- VERSION = "2.2.0"
2
+ VERSION = "2.2.1"
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: awsssh
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.2.0
4
+ version: 2.2.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Sebastian Thiele