aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--railties/CHANGELOG4
-rw-r--r--railties/lib/rails/gem_dependency.rb6
2 files changed, 8 insertions, 2 deletions
diff --git a/railties/CHANGELOG b/railties/CHANGELOG
index 11d2926f31..c765dedae5 100644
--- a/railties/CHANGELOG
+++ b/railties/CHANGELOG
@@ -1,3 +1,7 @@
+*SVN*
+
+* Use a system command to install gems, since GemRunner exits the ruby process. #210 [Tim Morgan]
+
*2.1.0 RC1 (May 11th, 2008)*
* script/dbconsole fires up the command-line database client. #102 [Steve Purcell]
diff --git a/railties/lib/rails/gem_dependency.rb b/railties/lib/rails/gem_dependency.rb
index 582861abf4..22ee0e3601 100644
--- a/railties/lib/rails/gem_dependency.rb
+++ b/railties/lib/rails/gem_dependency.rb
@@ -73,7 +73,9 @@ module Rails
end
def install
- puts `#{gem_command} #{install_command.join(' ')}`
+ cmd = "#{gem_command} #{install_command.join(' ')}"
+ puts cmd
+ puts %x(#{cmd})
end
def unpack_to(directory)
@@ -107,7 +109,7 @@ private ###################################################################
def install_command
cmd = %w(install) << @name
- cmd << "--version" << "#{@requirement.to_s}" if @requirement
+ cmd << "--version" << %("#{@requirement.to_s}") if @requirement
cmd << "--source" << @source if @source
cmd
end