awssh 0.1.0 → 0.1.1

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: 7769be2866aa2ea80787123093fd4415f8fd3c61
4
- data.tar.gz: 96abfdf069e75350044a20802434e2cd3072005a
3
+ metadata.gz: 6b1df7dd4b57331d524151ed4088dee8981a79ff
4
+ data.tar.gz: e5739363cca8f3d63827d24d0b9408faf1f27612
5
5
  SHA512:
6
- metadata.gz: 7b0e70860e2bd0faba3d09275d7894af5c36eb7ec17e0653793935f79e4809c7362ebc4d0152270ed98b196974a405509669e560766b39243a1adb3e3f4a0171
7
- data.tar.gz: fcefa9565d2271eb26217c0352e726d4a7dec14e1a9b1412c719f4c1fb3fbe0190b5ecc223e171efae411e095973bf85ad59b0ef0ed29fa80426fe36b17dd552
6
+ metadata.gz: edd6f9cea522561a58121fea896dc4cc91c0cf512221b7c7963b3e14836bcd3f8aa135fea4ba85f5176bae43d154173aa87a9211a7ca799677060f398244523d
7
+ data.tar.gz: b08f4e8de93d2616879a5c8a4ba057d8dea2fc86708bebaa48119b8fb1c6932e473d9c135b2b9c22e9e2728048154b3e520c6e8e1b9bd352c9b363cc004bba34
data/README.md CHANGED
@@ -41,6 +41,18 @@ Options:
41
41
  -i, --init initialize config
42
42
  ```
43
43
 
44
+ ## Shell Alias
45
+
46
+ To get around using multiple RVM's and still have access to awssh command
47
+
48
+ alias awssh='rvm <rvm version> do awssh'
49
+
50
+ When you install awssh into your default ruby, then change to a project ruby,
51
+ the awssh gem is not longer available. This allows you to use the awssh gem
52
+ from ruby. Just specify the default rvm version in <rvm verison> above.
53
+
54
+ alias awssh='rvm 2.1.2 do awssh'
55
+
44
56
  ## Contributing
45
57
 
46
58
  1. Fork it ( https://github.com/[my-github-username]/awssh/fork )
data/lib/awssh/command.rb CHANGED
@@ -5,7 +5,7 @@ module Awssh
5
5
  verbose: false,
6
6
  config: '~/.awssh',
7
7
  multi: false,
8
- test: true,
8
+ test: false,
9
9
  }
10
10
  @config = {
11
11
  multi: 'csshX',
data/lib/awssh/version.rb CHANGED
@@ -2,7 +2,7 @@ module Awssh
2
2
  module Version
3
3
  MAJOR = 0
4
4
  MINOR = 1
5
- TINY = 0
5
+ TINY = 1
6
6
  TAG = nil
7
7
  LIST = [MAJOR, MINOR, TINY, TAG].compact
8
8
  STRING = LIST.join('.')
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: awssh
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.0
4
+ version: 0.1.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Shawn Catanzarite