Sha256: d5cf86b40db9e123538247fe7ceb46428484568fb3adf56c1b41a4e1746595bc
Contents?: true
Size: 463 Bytes
Versions: 5
Compression:
Stored size: 463 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 # Default task is to run tests task :default => 'spec'
Version data entries
5 entries across 5 versions & 1 rubygems
Version | Path |
---|---|
vagrant-winrm-0.7.0 | Rakefile |
vagrant-winrm-0.6.0 | Rakefile |
vagrant-winrm-0.5.0 | Rakefile |
vagrant-winrm-0.4.0 | Rakefile |
vagrant-winrm-0.0.2 | Rakefile |