Rakefile in puppet-herald-0.1.0 vs Rakefile in puppet-herald-0.1.1

- old
+ new

@@ -1,6 +1,13 @@ -require 'puppet-herald/app' + require 'sinatra/activerecord/rake' require 'rspec/core/rake_task' +desc "Run spec tests." RSpec::Core::RakeTask.new(:spec) -task :default => :spec + +desc "Run lint, and spec tests." +task :test => [ + :spec +] + +task :default => :test \ No newline at end of file