instiki/vendor/plugins/bundler/gems/bundler-1.0.15/spec/support/rubygems_ext.rb
Jacques Distler 9e909d5be3 Update Rails, rails_xss and Bundler
Update Bundler to 1.0.15.
Update Rails to 2.3.12.
Update rails_xss plugin.

The latter two were the
source of a considerable
amount of grief, as rails_xss
is now MUCH stricter about what
string methods can be used.

Also made it possible to use
rake 0.9.x with Instiki. But
you probably REALLY want to use

 ruby bundle exec rake ...

instead of just saying

 rake ....
2011-06-15 00:43:38 -05:00

38 lines
1.3 KiB
Ruby

require 'rubygems/user_interaction'
module Spec
module Rubygems
def self.setup
Gem.clear_paths
ENV['BUNDLE_PATH'] = nil
ENV['GEM_HOME'] = ENV['GEM_PATH'] = Path.base_system_gems.to_s
ENV['PATH'] = ["#{Path.root}/bin", "#{Path.system_gem_path}/bin", ENV['PATH']].join(File::PATH_SEPARATOR)
unless File.exist?("#{Path.base_system_gems}")
FileUtils.mkdir_p(Path.base_system_gems)
puts "running `gem install rake fakeweb --no-rdoc --no-ri`"
`gem install fakeweb --no-rdoc --no-ri`
# Rake version has to be consistent for tests to pass
`gem install rake --version 0.8.7 --no-rdoc --no-ri`
# 3.0.0 breaks 1.9.2 specs
puts "running `gem install builder --version 2.1.2 --no-rdoc --no-ri`"
`gem install builder --version 2.1.2 --no-rdoc --no-ri`
end
ENV['HOME'] = Path.home.to_s
Gem::DefaultUserInteraction.ui = Gem::SilentUI.new
end
def gem_command(command, args = "", options = {})
if command == :exec && !options[:no_quote]
args = args.gsub(/(?=")/, "\\")
args = %["#{args}"]
end
lib = File.join(File.dirname(__FILE__), '..', '..', 'lib')
%x{#{Gem.ruby} -I#{lib} -rubygems -S gem --backtrace #{command} #{args}}.strip
end
end
end