Rakefile in furoshiki-0.2.0 vs Rakefile in furoshiki-0.3.0

- old
+ new

@@ -1,7 +1,8 @@ require 'bundler' require 'rake/clean' +require 'rspec/core/rake_task' Bundler::GemHelper.install_tasks @types = %w[rb] namespace :whitespace do desc 'Removes trailing whitespace' @@ -17,5 +18,9 @@ end end end CLEAN.include('spec/shoes/.furoshiki', 'spec/shoes/sample_app') + +RSpec::Core::RakeTask.new(:spec) + +task :default => :spec