rvm 0.0.23 → 0.0.24
Sign up to get free protection for your applications and to get access to all the features.
- data/bash/rvm +4 -4
- data/bash/rvm-install +1 -2
- data/rvm.gemspec +1 -1
- 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.
|
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/$
|
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..."
|
data/bash/rvm-install
CHANGED
@@ -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
|
30
|
+
echo -e "$info Please make sure that this line is in place."
|
32
31
|
break
|
33
32
|
fi
|
34
33
|
done
|
data/rvm.gemspec
CHANGED