Rakefile in platform-api-1.0.0 vs Rakefile in platform-api-1.0.1
- old
+ new
@@ -20,5 +20,12 @@
sh 'git add .'
sh 'git commit -am "Rebuild documentation"'
sh 'git push origin gh-pages'
sh 'git checkout master'
end
+
+begin
+ require "rspec/core/rake_task"
+ RSpec::Core::RakeTask.new(:spec)
+ task default: [:spec]
+rescue LoadError
+end