fvm 0.1.5 → 0.1.6

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.
data/README.md CHANGED
@@ -19,12 +19,12 @@ Installation
19
19
 
20
20
  First, install the **fvm** gem:
21
21
 
22
- gem install fvm
22
+ gem install fvm
23
23
 
24
24
  Next, add the following to your bash initialization script (bashrc, bash_init, /etc/profile, whatever you prefer):
25
25
 
26
- [[ -s $(fvm restart) ]] && source $(fvm restart)
27
- # This loads FVM into a shell session.
26
+ [[ -s $(fvm restart) ]] && source $(fvm restart)
27
+ # This loads FVM into a shell session.
28
28
 
29
29
  *Note: If you also have **rvm** installed, make sure these lines go **AFTER** the **rvm** initialization.*
30
30
 
@@ -60,6 +60,10 @@ module Fvm
60
60
  The HighLine instance for this shell wrapper
61
61
  =end
62
62
  def highline
63
+ # ruby eof inconsistency bug
64
+ # https://github.com/JEG2/highline/issues/closed/#issue/2
65
+ HighLine.track_eof = false
66
+
63
67
  @highline ||= HighLine.new
64
68
  end
65
69
 
@@ -2,5 +2,5 @@ module Fvm
2
2
  =begin rdoc
3
3
  The version of this gem
4
4
  =end
5
- VERSION = '0.1.5'
5
+ VERSION = '0.1.6'
6
6
  end
metadata CHANGED
@@ -1,13 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: fvm
3
3
  version: !ruby/object:Gem::Version
4
- hash: 17
4
+ hash: 23
5
5
  prerelease:
6
6
  segments:
7
7
  - 0
8
8
  - 1
9
- - 5
10
- version: 0.1.5
9
+ - 6
10
+ version: 0.1.6
11
11
  platform: ruby
12
12
  authors:
13
13
  - Jeremy Ruppel