Sha256: f627df0b979c782a066a6f2b4e345545523a47099b9976b01c545ab369543643

Contents?: true

Size: 744 Bytes

Versions: 9

Compression:

Stored size: 744 Bytes

Contents

# encoding: UTF-8
require 'rubygems'
require 'bundler/setup'
require 'rspec/core/rake_task'
require 'rubocop/rake_task'

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

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

RSpec::Core::RakeTask.new(:spec) do |task|
  task.pattern = 'test/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 = 'test/spec/*_spec.rb'
  task.rspec_opts = ['--color', '-f documentation']
  task.rspec_opts << '-tintegration'
end

RuboCop::RakeTask.new

task default: [:spec, :rubocop]

task all: [:default, :integration]

Version data entries

9 entries across 8 versions & 3 rubygems

Version Path
vagrant-unbundled-1.8.1.1 vendor/bundle/ruby/2.3.0/gems/winrm-fs-0.2.3/Rakefile
winrm-fs-0.2.3 Rakefile
vagrant-cloudstack-1.2.0 vendor/bundle/gems/winrm-fs-0.2.2/Rakefile
winrm-fs-0.2.2 Rakefile
winrm-fs-0.2.1 Rakefile
vagrant-cloudstack-1.1.0 vendor/bundle/gems/winrm-fs-0.1.0/Rakefile
vagrant-cloudstack-1.1.0 vendor/bundle/gems/winrm-fs-0.2.0/Rakefile
winrm-fs-0.2.0 Rakefile
winrm-fs-0.1.0 Rakefile