Rakefile in progress-0.2.2 vs Rakefile in progress-0.3.0

- old
+ new

@@ -16,12 +16,11 @@ require 'pathname' desc "Replace system gem with symlink to this folder" task 'ghost' do gem_path = Pathname(Gem.searcher.find(name).full_gem_path) current_path = Pathname('.').expand_path - cmd = gem_path.writable? && gem_path.parent.writable? ? %w() : %w(sudo) - system(*cmd + %W[rm -r #{gem_path}]) - system(*cmd + %W[ln -s #{current_path} #{gem_path}]) + system('rm', '-r', gem_path) + system('ln', '-s', current_path, gem_path) end rescue LoadError puts "Jeweler (or a dependency) not available. Install it with: gem install jeweler" end