./Rakefile in noe-1.1.0 vs ./Rakefile in noe-1.2.0

- old
+ new

@@ -1,9 +1,10 @@ begin gem "bundler", "~> 1.0" require "bundler/setup" -rescue LoadError - abort "This project requires bundler, try 'gem install bundler'" +rescue LoadError => ex + puts ex.message + abort "Bundler failed to load, (did you run 'gem install bundler' ?)" end # Dynamically load the gem spec $gemspec_file = File.expand_path('../noe.gemspec', __FILE__) $gemspec = Kernel.eval(File.read($gemspec_file))