Rakefile in hyperclient-0.2.0 vs Rakefile in hyperclient-0.3.0

- old
+ new

@@ -22,7 +22,11 @@ t.libs << 'test' t.pattern = 'test/**/*_test.rb' t.verbose = false end +desc 'runs the whole spinach suite' +task :spinach do + ruby '-S spinach' +end -task :default => :test +task default: [:test, :spinach]