Sha256: 22e60c91f93ea60779ec34a6227ebfa8ff01c858fc613e71eb25e04acc003035

Contents?: true

Size: 620 Bytes

Versions: 5

Compression:

Stored size: 620 Bytes

Contents

require 'bundler/gem_tasks'
require 'chef/provisioning/vsphere_driver/version'
require 'rspec/core/rake_task'
require "rubocop/rake_task"

$:.unshift(File.dirname(__FILE__) + '/lib')

RuboCop::RakeTask.new(:style) do |task|
  task.options << "--display-cop-names"
end

RSpec::Core::RakeTask.new(:unit) do |task|
  task.pattern = 'spec/unit_tests/*_spec.rb'
  task.rspec_opts = ['--color', '-f documentation']
end

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

task :default => [:unit]

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
chef-provisioning-vsphere-0.10.0 Rakefile
chef-provisioning-vsphere-0.9.0 Rakefile
chef-provisioning-vsphere-0.8.4 Rakefile
chef-provisioning-vsphere-0.8.3 Rakefile
chef-provisioning-vsphere-0.8.2 Rakefile