rvm 0.0.23 → 0.0.24

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 (4) hide show
  1. data/bash/rvm +4 -4
  2. data/bash/rvm-install +1 -2
  3. data/rvm.gemspec +1 -1
  4. metadata +1 -1
data/bash/rvm CHANGED
@@ -3,7 +3,7 @@
3
3
  rvm_meta_author="Wayne E. Seguin"
4
4
  rvm_meta_author_email="wayneeseguin@gmail.com"
5
5
  rvm_meta_website="http://rvm.beginrescueend.com/"
6
- rvm_meta_version="0.0.23"
6
+ rvm_meta_version="0.0.24"
7
7
  rvm_meta_updated="2009.08.25"
8
8
 
9
9
  #
@@ -156,14 +156,14 @@ function rvm-install-source {
156
156
  esac
157
157
 
158
158
  rvm_package_name="ruby-$rvm_major.$rvm_minor-p$rvm_patch_level"
159
- rvm_url="ftp://ftp.ruby-lang.org/pub/ruby/$major/$rvm_package_name.tar.gz"
159
+ rvm_url="ftp://ftp.ruby-lang.org/pub/ruby/$rvm_major/$rvm_package_name.tar.gz"
160
160
 
161
161
  rvm-log-info "Installing Ruby from source to: $rvm_install_path/$rvm_package_name"
162
162
  mkdir -p $rvm_log_path/$rvm_package_name
163
163
 
164
164
  pushd $rvm_source_path > /dev/null
165
- if [ -d $rvm_package_name ] ; then
166
- cd $rvm_package_name
165
+ if [ -d $rvm_source_path/$rvm_package_name ] ; then
166
+ cd $rvm_source_path/$rvm_package_name
167
167
  else
168
168
  if [ ! -f "$rvm_archives_path/$rvm_package_name.tar.gz" ] ; then
169
169
  rvm-log-info "\tDownloading $rvm_package_name, this may take a while depending on your connection..."
@@ -15,7 +15,6 @@ for script in rvm ; do # Preparing for refactoring.
15
15
  cp "`dirname "${0}"`/$script" ~/.rvm/bin/
16
16
  done
17
17
 
18
-
19
18
  # State what is required to use rvm
20
19
  echo -e "\n\033[0;32mrvm\033[0m is a shell script that allows a user to manage multiple ruby versions in their own account."
21
20
  echo -e "$info In order to use rvm the following line must occur in your shell's loading files:"
@@ -28,7 +27,7 @@ while : ; do
28
27
  echo 'w00t!'
29
28
  break
30
29
  elif [ "${response:0:1}" = "m" ] ; then
31
- echo -e "$info Please make sure that both lines (a) and (b) are in place, with (a) sourced *first*."
30
+ echo -e "$info Please make sure that this line is in place."
32
31
  break
33
32
  fi
34
33
  done
@@ -5,7 +5,7 @@
5
5
 
6
6
  Gem::Specification.new do |s|
7
7
  s.name = %q{rvm}
8
- s.version = "0.0.23"
8
+ s.version = "0.0.24"
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.23
4
+ version: 0.0.24
5
5
  platform: ruby
6
6
  authors:
7
7
  - Wayne E. Seguin