tasks/default.rake in heel-3.1.2 vs tasks/default.rake in heel-3.1.3

- old
+ new

@@ -10,11 +10,11 @@ # Install all the development and runtime dependencies of this gem using the # gemspec. task :default do require 'rubygems/dependency_installer' - installer = Gem::DependencyInstaller.new + installer = ::Gem::DependencyInstaller.new This.set_coverage_gem puts "Installing gem depedencies needed for development" This.platform_gemspec.dependencies.each do |dep| @@ -233,10 +233,10 @@ # .rbc files from ruby 2.0 CLOBBER << FileList["**/*.rbc"] # The standard gem packaging task, everyone has it. require 'rubygems/package_task' -Gem::PackageTask.new( This.platform_gemspec ) do +::Gem::PackageTask.new( This.platform_gemspec ) do # nothing end #------------------------------------------------------------------------------ # Release - the steps we go through to do a final release, this is pulled from