rvm 1.0.22 → 1.0.23

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.
@@ -7,10 +7,6 @@ esac
7
7
 
8
8
  prefix="PATH='$PATH'"
9
9
 
10
- if [[ -n "${BUNDLE_PATH:-""}" ]] ; then
11
- prefix="BUNDLE_PATH='$BUNDLE_PATH' $prefix"
12
- fi
13
-
14
10
  if [[ -n "${GEM_HOME:-""}" ]] ; then
15
11
  prefix="GEM_HOME='$GEM_HOME' $prefix"
16
12
  fi
data/config/db CHANGED
@@ -30,6 +30,7 @@ rbx_version=head
30
30
  rbx_1.0.0_patch_level=20100514
31
31
  rbx_1.0.1_patch_level=20100603
32
32
  rbx_1.1.0_patch_level=20100923
33
+ rbx_1.1.1_patch_level=20101116
33
34
  rbx_url=http://asset.rubini.us
34
35
  rubinius_repo_url=git://github.com/evanphx/rubinius.git
35
36
  http://rubini.us/download/latest
@@ -27,8 +27,9 @@ jruby-head
27
27
 
28
28
  # Rubinius
29
29
  rbx-1.0.1
30
- rbx[-1.1.0]
31
- rbx-head
30
+ rbx-1.1.0
31
+ rbx-1.1.1
32
+ rbx[-head]
32
33
 
33
34
  # Ruby Enterprise Edition
34
35
  ree-1.8.6
data/config/md5 CHANGED
@@ -135,3 +135,4 @@ rubygems-1.3.6.tgz=789ca8e9ad1d4d3fe5f0534fcc038a0d
135
135
  rubygems-1.3.7.tgz=e85cfadd025ff6ab689375adbf344bbe
136
136
  zlib-1.2.3.tar.gz=debc62758716a169df9f62e6ab2bc634
137
137
  zlib-1.2.5.tar.gz=c735eab2d659a96e5a594c9e8541ad63
138
+ rubinius-1.1.1-20101116.tar.gz=b39f618eeba37c3aff215da8bca55fd7
@@ -45,3 +45,5 @@
45
45
  # Make Flags, I have 8 cpu's so I might use 7 make threads:
46
46
  #export rvm_make_flags="-j7"
47
47
 
48
+ # Automatically trust project .rvmrc files
49
+ # export rvm_trust_rvmrcs_flag=1
data/help/info CHANGED
@@ -34,7 +34,6 @@ Example:
34
34
  environment:
35
35
  GEM_HOME: "/Users/wayne/.rvm/gems/ruby-1.9.2-head"
36
36
  GEM_PATH: "/Users/wayne/.rvm/gems/ruby-1.9.2-head:/Users/wayne/.rvm/gems/ruby-1.9.2-head@global"
37
- BUNDLE_PATH: "/Users/wayne/.rvm/gems/ruby-1.9.2-head"
38
37
  MY_RUBY_HOME: "/Users/wayne/.rvm/rubies/ruby-1.9.2-head"
39
38
  IRBRC: "/Users/wayne/.rvm/rubies/ruby-1.9.2-head/.irbrc"
40
39
  RUBYOPT: ""
@@ -55,7 +54,6 @@ Example:
55
54
  environment:
56
55
  GEM_HOME: "/Users/wayne/.rvm/gems/ruby-1.8.7-p249"
57
56
  GEM_PATH: "/Users/wayne/.rvm/gems/ruby-1.8.7-p249:/Users/wayne/.rvm/gems/ruby-1.8.7-p249@global"
58
- BUNDLE_PATH: "/Users/wayne/.rvm/gems/ruby-1.8.7-p249"
59
57
  MY_RUBY_HOME: "/Users/wayne/.rvm/rubies/ruby-1.8.7-p249"
60
58
  IRBRC: "/Users/wayne/.rvm/rubies/ruby-1.8.7-p249/.irbrc"
61
59
  RUBYOPT: ""
data/install CHANGED
@@ -161,6 +161,8 @@ upgrade_notes()
161
161
 
162
162
  Upgrade Notes
163
163
 
164
+ * rvm_trust_rvmrcs has been changed to rvm_trust_rvmrcs_flag for consistency
165
+
164
166
  * Ruby package dependency list for your OS is given by:
165
167
  rvm notes
166
168
 
@@ -1,4 +1,4 @@
1
1
  ---
2
2
  :major: 1
3
3
  :minor: 0
4
- :patch: 22
4
+ :patch: 23
@@ -11,7 +11,7 @@ module RVM
11
11
  path_identifier = rvm(:tools, "path-identifier", path.to_s)
12
12
  if path_identifier.exit_status == 2
13
13
  error_message = "The rvmrc located in '#{path}' could not be loaded, likely due to trust mechanisms."
14
- error_message << " Please run 'rvm rvmrc {trust,untrust} \"#{path}\"' to continue, or set rvm_trust_rvmrcs to 1."
14
+ error_message << " Please run 'rvm rvmrc {trust,untrust} \"#{path}\"' to continue, or set rvm_trust_rvmrcs_flag to 1."
15
15
  raise ErrorLoadingRVMRC, error_message
16
16
  end
17
17
  return normalize(path_identifier.stdout)
@@ -162,7 +162,6 @@ module RVM
162
162
  if compatible_with_current?(result)
163
163
  ENV['GEM_HOME'] = result[:GEM_HOME]
164
164
  ENV['GEM_PATH'] = result[:GEM_PATH]
165
- ENV['BUNDLE_PATH'] = result[:BUNDLE_PATH]
166
165
  Gem.clear_paths if defined?(Gem)
167
166
  else
168
167
  raise IncompatibleRubyError.new(result, "The given ruby environment requires #{ruby_string(result)} (versus #{self.class.current_ruby_string})")
@@ -5,11 +5,11 @@
5
5
 
6
6
  Gem::Specification.new do |s|
7
7
  s.name = %q{rvm}
8
- s.version = "1.0.22"
8
+ s.version = "1.0.23"
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"]
12
- s.date = %q{2010-11-16}
12
+ s.date = %q{2010-11-17}
13
13
  s.default_executable = %q{rvm-install}
14
14
  s.description = %q{Manages Ruby interpreter environments and switching between them.}
15
15
  s.email = %q{wayneeseguin@gmail.com}
@@ -42,7 +42,7 @@ else
42
42
  __array_start=0
43
43
  fi
44
44
 
45
- export BUNDLE_PATH GEM_HOME GEM_PATH rvm_action rvm_alias_expanded rvm_archflags rvm_archive_extension rvm_bin_flag rvm_bin_path rvm_clang_flag rvm_configure_flags rvm_debug_flag rvm_default_flag rvm_delete_flag rvm_docs_type rvm_dump_environment_flag rvm_error_message rvm_expanding_aliases rvm_file_name rvm_gemdir_flag rvm_gemset_name rvm_gemstone_package_file rvm_gemstone_url rvm_head_flag rvm_hook rvm_install_arguments rvm_install_on_use_flag rvm_interactive_flag rvm_llvm_flag rvm_loaded_flag rvm_make_flags rvm_niceness rvm_nightly_flag rvm_only_path_flag rvm_parse_break rvm_patch_names rvm_patch_original_pwd rvm_pretty_print_flag rvm_prior_cc rvm_proxy rvm_quiet_flag rvm_ree_options rvm_reload_flag rvm_remove_flag rvm_ruby_alias rvm_ruby_aliases rvm_ruby_args rvm_ruby_binary rvm_ruby_bits rvm_ruby_configure rvm_ruby_file rvm_ruby_gem_home rvm_ruby_gem_path rvm_ruby_global_gems_path rvm_ruby_home rvm_ruby_interpreter rvm_ruby_irbrc rvm_ruby_load_path rvm_ruby_major_version rvm_ruby_make rvm_ruby_make_install rvm_ruby_minor_version rvm_ruby_mode rvm_ruby_name rvm_ruby_package_file rvm_ruby_package_name rvm_ruby_patch rvm_ruby_patch_level rvm_ruby_release_version rvm_ruby_repo_url rvm_ruby_require rvm_ruby_revision rvm_ruby_selected_flag rvm_ruby_sha rvm_ruby_string rvm_ruby_strings rvm_ruby_tag rvm_ruby_url rvm_ruby_user_tag rvm_ruby_version rvm_script_name rvm_sdk rvm_silent_flag rvm_sticky_flag rvm_system_flag rvm_token rvm_trace_flag rvm_use_flag rvm_user_flag rvm_verbose_flag rvm_wrapper_name
45
+ export GEM_HOME GEM_PATH rvm_action rvm_alias_expanded rvm_archflags rvm_archive_extension rvm_bin_flag rvm_bin_path rvm_clang_flag rvm_configure_flags rvm_debug_flag rvm_default_flag rvm_delete_flag rvm_docs_type rvm_dump_environment_flag rvm_error_message rvm_expanding_aliases rvm_file_name rvm_gemdir_flag rvm_gemset_name rvm_gemstone_package_file rvm_gemstone_url rvm_head_flag rvm_hook rvm_install_arguments rvm_install_on_use_flag rvm_interactive_flag rvm_llvm_flag rvm_loaded_flag rvm_make_flags rvm_niceness rvm_nightly_flag rvm_only_path_flag rvm_parse_break rvm_patch_names rvm_patch_original_pwd rvm_pretty_print_flag rvm_prior_cc rvm_proxy rvm_quiet_flag rvm_ree_options rvm_reload_flag rvm_remove_flag rvm_ruby_alias rvm_ruby_aliases rvm_ruby_args rvm_ruby_binary rvm_ruby_bits rvm_ruby_configure rvm_ruby_file rvm_ruby_gem_home rvm_ruby_gem_path rvm_ruby_global_gems_path rvm_ruby_home rvm_ruby_interpreter rvm_ruby_irbrc rvm_ruby_load_path rvm_ruby_major_version rvm_ruby_make rvm_ruby_make_install rvm_ruby_minor_version rvm_ruby_mode rvm_ruby_name rvm_ruby_package_file rvm_ruby_package_name rvm_ruby_patch rvm_ruby_patch_level rvm_ruby_release_version rvm_ruby_repo_url rvm_ruby_require rvm_ruby_revision rvm_ruby_selected_flag rvm_ruby_sha rvm_ruby_string rvm_ruby_strings rvm_ruby_tag rvm_ruby_url rvm_ruby_user_tag rvm_ruby_version rvm_script_name rvm_sdk rvm_silent_flag rvm_sticky_flag rvm_system_flag rvm_token rvm_trace_flag rvm_use_flag rvm_user_flag rvm_verbose_flag rvm_wrapper_name
46
46
 
47
47
 
48
48
  # Cleanup tmp on exit.
data/scripts/cd CHANGED
@@ -48,7 +48,7 @@ if [[ ${rvm_project_rvmrc:-1} -ne 0 ]] ; then
48
48
  # This functionality is opt-in by setting rvm_cd_complete_flag=1 in ~/.rvmrc
49
49
  # Generic bash cd completion seems to work great for most, so this is only
50
50
  # for those that have some issues with that.
51
- if [[ ${rvm_cd_complete_flag} = 1 ]] ; then
51
+ if [[ ${rvm_cd_complete_flag:-0} = 1 ]] ; then
52
52
 
53
53
  # If $CDPATH is set, bash should tab-complete based on directories in those paths,
54
54
  # but with the cd function above, the built-in tab-complete ignores $CDPATH. This
@@ -653,7 +653,7 @@ rvm()
653
653
 
654
654
  rvm_action="${rvm_action:-usage}"
655
655
 
656
- export BUNDLE_PATH GEM_HOME GEM_PATH rvm_action rvm_archflags rvm_bin_flag rvm_bin_path rvm_clang_flag rvm_configure_flags rvm_debug_flag rvm_delete_flag rvm_docs_type rvm_dump_environment_flag rvm_error_message rvm_file_name rvm_gemdir_flag rvm_gemset_name rvm_head_flag rvm_install_arguments rvm_install_on_use_flag rvm_interactive_flag rvm_llvm_flag rvm_loaded_flag rvm_make_flags rvm_niceness rvm_only_path_flag rvm_parse_break rvm_patch_names rvm_patch_original_pwd rvm_pretty_print_flag rvm_prior_cc rvm_proxy rvm_quiet_flag rvm_ree_options rvm_reload_flag rvm_remove_flag rvm_ruby_alias rvm_ruby_aliases rvm_ruby_args rvm_ruby_file rvm_ruby_gem_home rvm_ruby_interpreter rvm_ruby_load_path rvm_ruby_make rvm_ruby_make_install rvm_ruby_patch_level rvm_ruby_repo_url rvm_ruby_repo_branch rvm_ruby_require rvm_ruby_string rvm_ruby_strings rvm_ruby_version rvm_script_name rvm_sdk rvm_silent_flag rvm_system_flag rvm_token rvm_trace_flag rvm_use_flag rvm_user_flag rvm_verbose_flag rvm_wrapper_name
656
+ export GEM_HOME GEM_PATH rvm_action rvm_archflags rvm_bin_flag rvm_bin_path rvm_clang_flag rvm_configure_flags rvm_debug_flag rvm_delete_flag rvm_docs_type rvm_dump_environment_flag rvm_error_message rvm_file_name rvm_gemdir_flag rvm_gemset_name rvm_head_flag rvm_install_arguments rvm_install_on_use_flag rvm_interactive_flag rvm_llvm_flag rvm_loaded_flag rvm_make_flags rvm_niceness rvm_only_path_flag rvm_parse_break rvm_patch_names rvm_patch_original_pwd rvm_pretty_print_flag rvm_prior_cc rvm_proxy rvm_quiet_flag rvm_ree_options rvm_reload_flag rvm_remove_flag rvm_ruby_alias rvm_ruby_aliases rvm_ruby_args rvm_ruby_file rvm_ruby_gem_home rvm_ruby_interpreter rvm_ruby_load_path rvm_ruby_make rvm_ruby_make_install rvm_ruby_patch_level rvm_ruby_repo_url rvm_ruby_repo_branch rvm_ruby_require rvm_ruby_string rvm_ruby_strings rvm_ruby_version rvm_script_name rvm_sdk rvm_silent_flag rvm_system_flag rvm_token rvm_trace_flag rvm_use_flag rvm_user_flag rvm_verbose_flag rvm_wrapper_name
657
657
 
658
658
  case "$rvm_action" in
659
659
  use) __rvm_use ;;
@@ -728,9 +728,8 @@ rvm()
728
728
  if [[ "${GEM_HOME:-""}" = "${gem_prefix}${rvm_gemset_separator:-"@"}${rvm_gemset_name}" ]] ; then
729
729
  rvm_ruby_gem_home="$gem_prefix"
730
730
  GEM_HOME="$rvm_ruby_gem_home"
731
- BUNDLE_PATH="$rvm_ruby_gem_home"
732
731
  GEM_PATH="$rvm_ruby_gem_home:$rvm_ruby_gem_home${rvm_gemset_separator:-"@"}global"
733
- export rvm_ruby_gem_home GEM_HOME BUNDLE_PATH GEM_PATH
732
+ export rvm_ruby_gem_home GEM_HOME GEM_PATH
734
733
  fi
735
734
  unset gem_prefix
736
735
  fi
@@ -471,7 +471,6 @@ gemset_unpack()
471
471
  if [[ -n "$rvm_ruby_gem_home" ]] ; then
472
472
  export GEM_HOME="$rvm_ruby_gem_home"
473
473
  export GEM_PATH="$rvm_ruby_gem_home:$rvm_ruby_global_gems_path"
474
- export BUNDLE_PATH="$rvm_ruby_gem_home"
475
474
  fi
476
475
 
477
476
  "$rvm_path/scripts/log" "info" \
@@ -510,7 +509,6 @@ gemset_export()
510
509
  if [[ -n "$rvm_ruby_gem_home" ]] ; then
511
510
  export GEM_HOME="$rvm_ruby_gem_home"
512
511
  export GEM_PATH="$rvm_ruby_gem_home:$rvm_ruby_global_gems_path"
513
- export BUNDLE_PATH="$rvm_ruby_gem_home"
514
512
  fi
515
513
 
516
514
  if [[ -z "$rvm_file_name" ]] ; then
@@ -560,7 +558,6 @@ gemset_import()
560
558
  if [[ -n "${rvm_ruby_gem_home:-""}" ]] ; then
561
559
  export GEM_HOME="$rvm_ruby_gem_home"
562
560
  export GEM_PATH="$rvm_ruby_gem_home"
563
- export BUNDLE_PATH="$rvm_ruby_gem_home"
564
561
  else
565
562
  rvm_ruby_gem_home=${GEM_HOME:-$(gem env gemdir)}
566
563
  fi
@@ -738,7 +735,7 @@ gem_install()
738
735
 
739
736
  if [[ -n "$rvm_ruby_gem_home" && "$rvm_ruby_gem_home" != "${rvm_gems_path:-"$rvm_path/gems"}" ]] ; then
740
737
 
741
- command="GEM_HOME='$rvm_ruby_gem_home' GEM_PATH='$rvm_ruby_gem_home' BUNDLE_PATH='${rvm_ruby_gem_home}' $gem_prefix gem install $gems_args $rvm_gem_options $gem_postfix $vars"
738
+ command="GEM_HOME='$rvm_ruby_gem_home' GEM_PATH='$rvm_ruby_gem_home' $gem_prefix gem install $gems_args $rvm_gem_options $gem_postfix $vars"
742
739
 
743
740
  else
744
741
 
@@ -82,7 +82,6 @@ info_environment()
82
82
  PATH: \"${PATH:-""}\"
83
83
  GEM_HOME: \"${GEM_HOME:-""}\"
84
84
  GEM_PATH: \"${GEM_PATH:-""}\"
85
- BUNDLE_PATH: \"${BUNDLE_PATH:-""}\"
86
85
  MY_RUBY_HOME: \"${MY_RUBY_HOME:-""}\"
87
86
  IRBRC: \"${IRBRC:-""}\"
88
87
  RUBYOPT: \"${RUBYOPT:-""}\"
@@ -161,6 +161,8 @@ upgrade_notes()
161
161
 
162
162
  Upgrade Notes
163
163
 
164
+ * rvm_trust_rvmrcs has been changed to rvm_trust_rvmrcs_flag for consistency
165
+
164
166
  * Ruby package dependency list for your OS is given by:
165
167
  rvm notes
166
168
 
@@ -262,7 +262,6 @@ __rvm_install_source()
262
262
 
263
263
  export GEM_HOME="$rvm_ruby_gem_home"
264
264
  export GEM_PATH="$rvm_ruby_gem_path"
265
- export BUNDLE_PATH="$rvm_ruby_gem_home"
266
265
 
267
266
  __rvm_rubygems_setup
268
267
  result=$?
@@ -325,7 +324,7 @@ __rvm_install_ruby()
325
324
  fi
326
325
 
327
326
  elif [[ "nightly" = "$rvm_ruby_version" ]] ; then
328
- macruby_path="/Library/Frameworks/MacRuby.framework/Versions/0.6/usr/bin"
327
+ macruby_path="/Library/Frameworks/MacRuby.framework/Versions/0.8/usr/bin"
329
328
  # TODO: Separated nightly from head.
330
329
 
331
330
  "$rvm_path/scripts/log" "info" "Retrieving the latest nightly macruby build..."
@@ -341,7 +340,7 @@ __rvm_install_ruby()
341
340
  fi
342
341
 
343
342
  mv "${rvm_archives_path:-"$rvm_path/archives"}/macruby_nightly-latest.pkg" \
344
- "$rvm_archives_path/macruby_nightly.pkg"
343
+ "${rvm_archives_path:-"$rvm_path/archives"}/macruby_nightly.pkg"
345
344
 
346
345
  __rvm_run "macruby/extract" \
347
346
  "sudo /usr/sbin/installer -pkg '${rvm_archives_path:-"$rvm_path/archives"}/macruby_nightly.pkg' -target '/'"
@@ -540,7 +539,7 @@ RubyWrapper
540
539
  # TODO: use 'rvm gems load' here:
541
540
  unset CFLAGS LDFLAGS ARCHFLAGS # Important.
542
541
 
543
- unset BUNDLE_PATH GEM_HOME GEM_PATH MY_RUBY_HOME IRBRC
542
+ unset GEM_HOME GEM_PATH MY_RUBY_HOME IRBRC
544
543
 
545
544
  __rvm_remove_rvm_from_path
546
545
 
@@ -1048,7 +1047,7 @@ RubyWrapper
1048
1047
 
1049
1048
  if [[ ${rvm_make_flags_flag:-0} -eq 1 ]] ; then __rvm_make_flags ; fi
1050
1049
 
1051
- unset BUNDLE_PATH GEM_HOME GEM_PATH MY_RUBY_HOME IRBRC
1050
+ unset GEM_HOME GEM_PATH MY_RUBY_HOME IRBRC
1052
1051
 
1053
1052
  __rvm_remove_rvm_from_path
1054
1053
 
@@ -1151,7 +1150,6 @@ RubyWrapper
1151
1150
 
1152
1151
  export GEM_HOME="$rvm_ruby_gem_home"
1153
1152
  export GEM_PATH="$rvm_ruby_gem_path"
1154
- export BUNDLE_PATH="$rvm_ruby_gem_home"
1155
1153
 
1156
1154
  __rvm_rubygems_setup
1157
1155
 
@@ -1853,15 +1851,15 @@ __rvm_rubygems_setup()
1853
1851
 
1854
1852
  for dir in $rvm_ruby_global_gems_path $rvm_ruby_gem_home ; do
1855
1853
 
1856
- export GEM_HOME="$dir" ; export GEM_PATH="$dir" ; export BUNDLE_PATH="$dir"
1854
+ export GEM_HOME="$dir" ; export GEM_PATH="$dir"
1857
1855
 
1858
1856
  __rvm_run "rubygems.update" \
1859
1857
  "$rvm_ruby_home/bin/gem update --system" "$rvm_ruby_string - updating #rubygems for $dir"
1860
1858
 
1861
1859
  done
1862
1860
 
1863
- GEM_HOME="$home" ; GEM_PATH="$path" ; BUNDLE_PATH="$home"
1864
- export GEM_HOME GEM_PATH BUNDLE_PATH
1861
+ GEM_HOME="$home" ; GEM_PATH="$path"
1862
+ export GEM_HOME GEM_PATH
1865
1863
 
1866
1864
  __rvm_inject_ruby_shebang "$rvm_ruby_home/bin/gem"
1867
1865
 
@@ -1940,7 +1938,7 @@ __rvm_rubygems_setup()
1940
1938
  builtin cd "${rvm_src_path:-"$rvm_path/src"}/$rvm_gem_package_name"
1941
1939
 
1942
1940
  __rvm_run "rubygems.install" \
1943
- "GEM_PATH='$rvm_ruby_gem_path:$rvm_ruby_global_gems_path' GEM_HOME='$rvm_ruby_gem_home' BUNDLE_PATH='$rvm_ruby_gem_home' $rvm_ruby_home/bin/ruby ${rvm_src_path:-"$rvm_path/src"}/$rvm_gem_package_name/setup.rb"
1941
+ "GEM_PATH='$rvm_ruby_gem_path:$rvm_ruby_global_gems_path' GEM_HOME='$rvm_ruby_gem_home' $rvm_ruby_home/bin/ruby ${rvm_src_path:-"$rvm_path/src"}/$rvm_gem_package_name/setup.rb"
1944
1942
  result=$?
1945
1943
 
1946
1944
  if [[ $result -gt 0 ]] ; then
@@ -2004,11 +2002,11 @@ __rvm_inject_gem_env()
2004
2002
 
2005
2003
  if [[ -n "$(head -n 1 "$actual_file" | awk '/[j]*ruby/')" ]] ; then
2006
2004
 
2007
- string="ENV['GEM_HOME']=ENV['GEM_HOME'] || '$rvm_ruby_gem_home'\nENV['GEM_PATH']=ENV['GEM_PATH'] || '$rvm_ruby_gem_path'\nENV['PATH']='$rvm_ruby_gem_home/bin:$rvm_ruby_global_gems_path/bin:$rvm_ruby_home/bin:' + ENV['PATH']\nENV['BUNDLE_PATH']=ENV['BUNDLE_PATH'] || '$rvm_ruby_gem_home'\n"
2005
+ string="ENV['GEM_HOME']=ENV['GEM_HOME'] || '$rvm_ruby_gem_home'\nENV['GEM_PATH']=ENV['GEM_PATH'] || '$rvm_ruby_gem_path'\nENV['PATH']='$rvm_ruby_gem_home/bin:$rvm_ruby_global_gems_path/bin:$rvm_ruby_home/bin:' + ENV['PATH']\n"
2008
2006
 
2009
2007
  elif [[ -n "$(head -n 1 "$actual_file" | awk '/bash/')" ]] ; then
2010
2008
 
2011
- string="GEM_HOME=\${GEM_HOME:-'$rvm_ruby_gem_home'}\nGEM_PATH=\${GEM_PATH:-'$rvm_ruby_gem_home:$rvm_ruby_global_gems_path'}\nPATH=$rvm_ruby_gem_home/bin:$rvm_ruby_global_gems_path/bin:$rvm_ruby_home/bin:\$PATH\nBUNDLE_PATH=\${BUNDLE_PATH:-'$rvm_ruby_gem_home'}\n"
2009
+ string="GEM_HOME=\${GEM_HOME:-'$rvm_ruby_gem_home'}\nGEM_PATH=\${GEM_PATH:-'$rvm_ruby_gem_home:$rvm_ruby_global_gems_path'}\nPATH=$rvm_ruby_gem_home/bin:$rvm_ruby_global_gems_path/bin:$rvm_ruby_home/bin:\$PATH\n"
2012
2010
 
2013
2011
  fi
2014
2012
 
@@ -161,6 +161,8 @@ upgrade_notes()
161
161
 
162
162
  Upgrade Notes
163
163
 
164
+ * rvm_trust_rvmrcs has been changed to rvm_trust_rvmrcs_flag for consistency
165
+
164
166
  * Ruby package dependency list for your OS is given by:
165
167
  rvm notes
166
168
 
@@ -4,7 +4,7 @@
4
4
  __rvm_select()
5
5
  {
6
6
  # Set Variable Defaults
7
- export GEM_HOME GEM_PATH BUNDLE_PATH MY_RUBY_HOME RUBY_VERSION
7
+ export GEM_HOME GEM_PATH MY_RUBY_HOME RUBY_VERSION
8
8
 
9
9
  if [[ -z "${rvm_ruby_string:-""}" ]] ; then
10
10
  [[ -n "${rvm_ruby_interpreter:-""}" ]] && rvm_ruby_string="$rvm_ruby_interpreter"
@@ -267,7 +267,7 @@ __rvm_use()
267
267
 
268
268
  if [[ "system" = "$rvm_ruby_interpreter" ]] ; then
269
269
 
270
- unset GEM_HOME GEM_PATH BUNDLE_PATH MY_RUBY_HOME RUBY_VERSION IRBRC
270
+ unset GEM_HOME GEM_PATH MY_RUBY_HOME RUBY_VERSION IRBRC
271
271
 
272
272
  new_path="$(__rvm_remove_rvm_from_path ; printf "$PATH"):${rvm_bin_path:-"$rvm_path/bin"}"
273
273
 
@@ -309,12 +309,11 @@ __rvm_use()
309
309
  else
310
310
  GEM_HOME="$rvm_ruby_gem_home"
311
311
  GEM_PATH="$rvm_ruby_gem_home:$rvm_ruby_global_gems_path"
312
- BUNDLE_PATH="$rvm_ruby_gem_home"
313
312
  MY_RUBY_HOME="$rvm_ruby_home"
314
313
  RUBY_VERSION="$rvm_ruby_string"
315
314
  IRBRC="$rvm_ruby_irbrc"
316
315
 
317
- export GEM_HOME GEM_PATH BUNDLE_PATH MY_RUBY_HOME RUBY_VERSION IRBRC
316
+ export GEM_HOME GEM_PATH MY_RUBY_HOME RUBY_VERSION IRBRC
318
317
 
319
318
  IRBRC=${IRBRC:-""} ; if [[ -z "$IRBRC" ]] ; then unset IRBRC ; fi
320
319
 
@@ -380,7 +379,7 @@ __rvm_use()
380
379
 
381
380
  else
382
381
  RUBY_VERSION="$("$rvm_ruby_home/bin/ruby" -v | sed 's#^\(.*\) (.*$#\1#')"
383
- export GEM_HOME GEM_PATH BUNDLE_PATH MY_RUBY_HOME RUBY_VERSION
382
+ export GEM_HOME GEM_PATH MY_RUBY_HOME RUBY_VERSION
384
383
  "$rvm_path/scripts/alias" delete default &> /dev/null
385
384
  "$rvm_path/scripts/alias" create default "$environment_id" >& /dev/null
386
385
  \ln -nfs "$rvm_path/environments/$environment_id" "$rvm_path/environments/default"
@@ -847,10 +846,9 @@ __rvm_gemset_use()
847
846
  rvm_ruby_global_gems_path="${rvm_ruby_gem_home%%${rvm_gemset_separator:-"@"}*}${rvm_gemset_separator:-"@"}global"
848
847
 
849
848
  GEM_HOME="$rvm_ruby_gem_home"
850
- BUNDLE_PATH="$rvm_ruby_gem_home"
851
849
  GEM_PATH="$rvm_ruby_gem_home:$rvm_ruby_global_gems_path"
852
850
 
853
- export rvm_ruby_gem_home GEM_HOME BUNDLE_PATH GEM_PATH
851
+ export rvm_ruby_gem_home GEM_HOME GEM_PATH
854
852
 
855
853
  __rvm_use # Now ensure the selection takes effect for the environment.
856
854
  fi
@@ -868,11 +866,9 @@ __rvm_gemset_clear()
868
866
 
869
867
  GEM_HOME=$rvm_ruby_gem_home
870
868
 
871
- BUNDLE_PATH="$rvm_ruby_gem_home"
872
-
873
869
  GEM_PATH="$rvm_ruby_gem_home:$rvm_ruby_global_gems_path"
874
870
 
875
- export rvm_ruby_gem_home rvm_ruby_global_gems_path GEM_HOME BUNDLE_PATH GEM_PATH
871
+ export rvm_ruby_gem_home rvm_ruby_global_gems_path GEM_HOME GEM_PATH
876
872
 
877
873
  __rvm_use # Now ensure the selection takes effect for the environment.
878
874
  }
@@ -161,6 +161,8 @@ upgrade_notes()
161
161
 
162
162
  Upgrade Notes
163
163
 
164
+ * rvm_trust_rvmrcs has been changed to rvm_trust_rvmrcs_flag for consistency
165
+
164
166
  * Ruby package dependency list for your OS is given by:
165
167
  rvm notes
166
168
 
@@ -1030,7 +1030,7 @@ __rvm_ensure_has_environment_files()
1030
1030
  printf "export PATH=\"${rvm_ruby_gem_home}/bin:${rvm_ruby_global_gems_path}/bin:${rvm_ruby_home}/bin:${rvm_bin_path:-"$rvm_path/bin"}:\$PATH\"\n" \
1031
1031
  > "$file_name"
1032
1032
 
1033
- for variable in rvm_path RUBY_VERSION GEM_HOME GEM_PATH BUNDLE_PATH \
1033
+ for variable in rvm_path RUBY_VERSION GEM_HOME GEM_PATH \
1034
1034
  MY_RUBY_HOME IRBRC rvm_ruby_string rvm_gemset_name MAGLEV_HOME ; do
1035
1035
 
1036
1036
  eval "export $variable"
@@ -1223,7 +1223,7 @@ __rvm_rvmrc_tools()
1223
1223
  fi
1224
1224
  ;;
1225
1225
  load)
1226
- rvm_rvmrc_cwd="" rvm_trust_rvmrcs=1 \
1226
+ rvm_rvmrc_cwd="" rvm_trust_rvmrcs_flag=1 \
1227
1227
  __rvm_project_rvmrc "$(dirname "$rvmrc_path")"
1228
1228
  ;;
1229
1229
  *)
@@ -1237,7 +1237,7 @@ __rvm_rvmrc_tools()
1237
1237
  __rvm_check_rvmrc_trustworthiness()
1238
1238
  {
1239
1239
  # Trust when they have the flag... of doom!
1240
- [[ -z "$1" || "$rvm_trust_rvmrcs" = "1" ]] && return 0
1240
+ [[ -z "$1" || "$rvm_trust_rvmrcs_flag" = "1" ]] && return 0
1241
1241
  value="$(__rvm_rvmrc_stored_trust "$1")"
1242
1242
  if [[ -z "$value" ]] ; then
1243
1243
  __rvm_ask_to_trust "$1"
metadata CHANGED
@@ -1,13 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: rvm
3
3
  version: !ruby/object:Gem::Version
4
- hash: 59
4
+ hash: 57
5
5
  prerelease: false
6
6
  segments:
7
7
  - 1
8
8
  - 0
9
- - 22
10
- version: 1.0.22
9
+ - 23
10
+ version: 1.0.23
11
11
  platform: ruby
12
12
  authors:
13
13
  - Wayne E. Seguin
@@ -15,7 +15,7 @@ autorequire:
15
15
  bindir: bin
16
16
  cert_chain: []
17
17
 
18
- date: 2010-11-16 00:00:00 -05:00
18
+ date: 2010-11-17 00:00:00 -05:00
19
19
  default_executable: rvm-install
20
20
  dependencies: []
21
21