Rakefile in vagrant-vyos-1.1.0 vs Rakefile in vagrant-vyos-1.1.1
- old
+ new
@@ -1,7 +1,8 @@
require "rubygems"
require "bundler/setup"
+require 'rspec/core/rake_task'
# Immediately sync all stdout so that tools like buildbot can
# immediately load in the output.
$stdout.sync = true
$stderr.sync = true
@@ -10,5 +11,8 @@
Dir.chdir(File.expand_path("../", __FILE__))
# This installs the tasks that help with gem creation and
# publishing.
Bundler::GemHelper.install_tasks
+
+RSpec::Core::RakeTask.new
+task :default => 'spec'