Rakefile in boilerpipe-ruby-0.0.1 vs Rakefile in boilerpipe-ruby-0.1.0
- old
+ new
@@ -2,5 +2,13 @@
require "rspec/core/rake_task"
RSpec::Core::RakeTask.new(:spec)
task :default => :spec
+
+
+desc 'Downloads forked boilerpipe jar from Gregors github for sanity checks'
+task :download_boilerpipe_jar do
+ FileUtils.mkdir_p 'spec/sanity_checks/jars/'
+ Dir.chdir 'spec/sanity_checks/jars/'
+ `wget 'https://github.com/gregors/jruby-boilerpipe/raw/master/lib/boilerpipe-common-2.0-SNAPSHOT-jar-with-dependencies.jar'`
+end