Rakefile in dsc-0.0.1 vs Rakefile in dsc-0.1.0
- old
+ new
@@ -1,2 +1,11 @@
require "bundler/gem_tasks"
+begin
+ require 'rspec/core/rake_task'
+
+ RSpec::Core::RakeTask.new(:spec)
+
+ task default: :spec
+rescue LoadError
+ # no rspec available
+end