fvm 0.1.7 → 0.1.8

Sign up to get free protection for your applications and to get access to all the features.
Files changed (4) hide show
  1. data/README.md +1 -1
  2. data/lib/fvm/version.rb +1 -1
  3. data/scripts/fvm +2 -2
  4. metadata +3 -3
data/README.md CHANGED
@@ -23,7 +23,7 @@ First, install the **fvm** gem:
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)
26
+ [[ -s $(fvm restart --chomp) ]] && source $(fvm restart --chomp)
27
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.*
@@ -2,5 +2,5 @@ module Fvm
2
2
  =begin rdoc
3
3
  The version of this gem
4
4
  =end
5
- VERSION = '0.1.7'
5
+ VERSION = '0.1.8'
6
6
  end
@@ -2,8 +2,8 @@
2
2
 
3
3
  # this resets the FLEX_HOME environment variable
4
4
  # to the current version of the sdk linked to by fvm
5
- export FLEX_HOME="$(fvm home)"
5
+ export FLEX_HOME="$(fvm home --chomp)"
6
6
 
7
7
  # this sets the alias for this command after being run
8
8
  # from a bash init script
9
- alias fvm-restart="source $(fvm restart)"
9
+ alias fvm-restart="source $(fvm restart --chomp)"
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: 21
4
+ hash: 11
5
5
  prerelease:
6
6
  segments:
7
7
  - 0
8
8
  - 1
9
- - 7
10
- version: 0.1.7
9
+ - 8
10
+ version: 0.1.8
11
11
  platform: ruby
12
12
  authors:
13
13
  - Jeremy Ruppel