Skip to content

Commit

Permalink
Merge branch 'hotfix/1.12.2' into stable
Browse files Browse the repository at this point in the history
  • Loading branch information
mpapis committed Apr 11, 2012
2 parents 53d42d8 + 3278f7b commit e3f7052
Show file tree
Hide file tree
Showing 7 changed files with 16 additions and 5 deletions.
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1.12.1
1.12.2
5 changes: 4 additions & 1 deletion scripts/functions/manage/goruby
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,10 @@ goruby_install()
export GEM_HOME="$rvm_ruby_gem_home"
export GEM_PATH="$rvm_ruby_gem_path"

"$rvm_scripts_path/rubygems" latest
(
rvm_create_flag=1 __rvm_use
"$rvm_scripts_path/rubygems" ${rvm_rubygems_version:-latest}
)

__rvm_bin_script

Expand Down
4 changes: 4 additions & 0 deletions scripts/functions/manage/ironruby
Original file line number Diff line number Diff line change
Expand Up @@ -118,6 +118,10 @@ chmod +x "$rvm_ruby_home/bin/ir"

ln -fs "$rvm_ruby_home/bin/ir" "$rvm_ruby_home/bin/ruby"

(
rvm_create_flag=1 __rvm_use
)

builtin hash -r

__rvm_run "gems.install" \
Expand Down
2 changes: 1 addition & 1 deletion scripts/functions/manage/jruby
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ jruby_install()

__rvm_bin_script

__rvm_use
rvm_create_flag=1 __rvm_use

__rvm_post_install

Expand Down
2 changes: 1 addition & 1 deletion scripts/functions/manage/maglev
Original file line number Diff line number Diff line change
Expand Up @@ -148,5 +148,5 @@ maglev_install()

__rvm_bin_script

__rvm_use
rvm_create_flag=1 __rvm_use
}
2 changes: 1 addition & 1 deletion scripts/functions/manage/ree
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ ree_install()
chmod +x "$rvm_ruby_home"/bin/*

(
__rvm_use
rvm_create_flag=1 __rvm_use
"$rvm_scripts_path/rubygems" ${rvm_rubygems_version:-latest}
)
__rvm_bin_script
Expand Down
4 changes: 4 additions & 0 deletions scripts/functions/manage/rubinius
Original file line number Diff line number Diff line change
Expand Up @@ -227,6 +227,10 @@ rbx_install()

unset file_name

(
rvm_create_flag=1 __rvm_use
)

binaries=(erb ri rdoc)

__rvm_post_install
Expand Down

0 comments on commit e3f7052

Please sign in to comment.