Skip to content

Commit

Permalink
Making sure the import:process task still works
Browse files Browse the repository at this point in the history
  • Loading branch information
qrush committed May 20, 2009
1 parent e296308 commit fc031d7
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Rakefile
Expand Up @@ -101,14 +101,14 @@ namespace :import do

desc 'Bring the gems through the gemcutter process'
task :process do
require 'rubygems/installer'
require 'app/helper'
require 'rubygems/indexer'
require 'app/cutter'

gems = Dir[File.join(ARGV[1], "*.gem")]
puts "Processing #{gems.size} gems..."
gems.each do |gem|
puts gem
Gemcutter::Helper.save_gem(File.open(gem))
Gem::Cutter.new(File.open(gem)).process
end
end
end
Expand Down
Empty file.

0 comments on commit fc031d7

Please sign in to comment.