rvm 0.0.20 → 0.0.21

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.
Files changed (3) hide show
  1. data/bash/rvm +4 -6
  2. data/rvm.gemspec +1 -1
  3. metadata +1 -1
data/bash/rvm CHANGED
@@ -3,7 +3,7 @@
3
3
  rvm_author="Wayne E. Seguin"
4
4
  rvm_author_email="wayneeseguin@gmail.com"
5
5
  rvm_website="http://rvm.beginrescueend.com/"
6
- rvm_version="0.0.20"
6
+ rvm_version="0.0.21"
7
7
  rvm_updated="2009.08.25"
8
8
 
9
9
  #
@@ -226,9 +226,7 @@ function rvm-install-source {
226
226
 
227
227
  function rvm-install-ruby {
228
228
 
229
- local ruby_options
230
- ruby_options=RUBYOPT
231
- unset RUBYOPT
229
+ ruby_options=$RUBYOPT ; unset RUBYOPT
232
230
 
233
231
  case "$implementation" in
234
232
 
@@ -328,8 +326,8 @@ function rvm-install-ruby {
328
326
 
329
327
  esac
330
328
 
331
- if [ ! -z $ruby_options ] ; then
332
- RUBYOPT="$ruby_options" ; export RUBYOPT
329
+ if [ ! -z "$ruby_options" ] ; then
330
+ RUBYOPT=$ruby_options ; export RUBYOPT
333
331
  fi
334
332
 
335
333
  }
@@ -5,7 +5,7 @@
5
5
 
6
6
  Gem::Specification.new do |s|
7
7
  s.name = %q{rvm}
8
- s.version = "0.0.20"
8
+ s.version = "0.0.21"
9
9
 
10
10
  s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
11
11
  s.authors = ["Wayne E. Seguin"]
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: rvm
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.20
4
+ version: 0.0.21
5
5
  platform: ruby
6
6
  authors:
7
7
  - Wayne E. Seguin