Rakefile in buildr-resolver-0.3.4 vs Rakefile in buildr-resolver-0.3.5
- old
+ new
@@ -7,14 +7,12 @@
$stderr.puts "Run `bundle install` to install missing gems"
exit e.status_code
end
require 'rake'
-require 'spec/rake/spectask'
+require 'rspec/core/rake_task'
-Spec::Rake::SpecTask.new(:spec) do |t|
- t.spec_files = FileList['spec/**/*_spec.rb']
-end
+RSpec::Core::RakeTask.new(:spec)
task :test => :spec
task :default => :test
\ No newline at end of file