Skip to content

Commit

Permalink
fix Gem installation command with versions
Browse files Browse the repository at this point in the history
  • Loading branch information
technoweenie committed May 31, 2008
1 parent fb89d7f commit 9c4f003
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 2 deletions.
4 changes: 4 additions & 0 deletions 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]
Expand Down
6 changes: 4 additions & 2 deletions railties/lib/rails/gem_dependency.rb
Expand Up @@ -73,7 +73,9 @@ def load_paths_added?
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)
Expand Down Expand Up @@ -107,7 +109,7 @@ def gem_command

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
Expand Down

0 comments on commit 9c4f003

Please sign in to comment.