rightscale-autocomplete 0.1.0 → 0.1.1

Sign up to get free protection for your applications and to get access to all the features.
data/VERSION CHANGED
@@ -1 +1 @@
1
- 0.1.0
1
+ 0.1.1
@@ -56,10 +56,10 @@ module RightscaleAutocomplete
56
56
 
57
57
  ssh_config = {}
58
58
  print "Enter the username to login as (eg root): "
59
- ssh_config[:user] = gets.chomp
59
+ ssh_config[:user] = STDIN.gets.chomp
60
60
 
61
61
  print "Enter the location of your ssh key (eg ~/.ssh/ec2_prod_key): "
62
- ssh_config[:key] = gets.chomp
62
+ ssh_config[:key] = STDIN.gets.chomp
63
63
 
64
64
  File.open(SSH_CONFIG, 'w') { |f| f << Marshal.dump(ssh_config) }
65
65
 
@@ -5,7 +5,7 @@
5
5
 
6
6
  Gem::Specification.new do |s|
7
7
  s.name = %q{rightscale-autocomplete}
8
- s.version = "0.1.0"
8
+ s.version = "0.1.1"
9
9
 
10
10
  s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
11
11
  s.authors = ["Joshua Bates"]
metadata CHANGED
@@ -5,8 +5,8 @@ version: !ruby/object:Gem::Version
5
5
  segments:
6
6
  - 0
7
7
  - 1
8
- - 0
9
- version: 0.1.0
8
+ - 1
9
+ version: 0.1.1
10
10
  platform: ruby
11
11
  authors:
12
12
  - Joshua Bates