Sha256: 898ad402c07149740986d77e19796b278253012a948d334420c4a8f39f32c637

Contents?: true

Size: 654 Bytes

Versions: 17

Compression:

Stored size: 654 Bytes

Contents

require 'rubygems'
require 'bundler/setup'
require 'rspec/core/rake_task'

# Change to the directory of this file.
Dir.chdir(File.expand_path("../", __FILE__))

# For gem creation and bundling
require "bundler/gem_tasks"

# Run the unit test suite
RSpec::Core::RakeTask.new do |task|
    task.pattern = "spec/**/*_spec.rb"
    task.rspec_opts = [ '--color', '-f documentation' ]
    task.rspec_opts << '-tunit'
end

# Run the integration test suite
RSpec::Core::RakeTask.new(:integration) do |task|
    task.pattern = "spec/**/*_spec.rb"
    task.rspec_opts = [ '--color', '-f documentation' ]
end

# Default task is to run tests
task :default => "spec"

Version data entries

17 entries across 17 versions & 1 rubygems

Version Path
vagrant-windows-1.7.0.pre.2 Rakefile
vagrant-windows-1.7.0.pre.1 Rakefile
vagrant-windows-1.6.0 Rakefile
vagrant-windows-1.6.0.pre.1 Rakefile
vagrant-windows-1.5.1 Rakefile
vagrant-windows-1.5.0 Rakefile
vagrant-windows-1.4.0 Rakefile
vagrant-windows-1.3.2 Rakefile
vagrant-windows-1.3.1 Rakefile
vagrant-windows-1.3.0 Rakefile
vagrant-windows-1.3.0.pre.3 Rakefile
vagrant-windows-1.3.0.pre.2 Rakefile
vagrant-windows-1.3.0.pre.1 Rakefile
vagrant-windows-1.2.3 Rakefile
vagrant-windows-1.2.2 Rakefile
vagrant-windows-1.2.1 Rakefile
vagrant-windows-1.2.0 Rakefile