Sha256: ccee2d8f02432ac2234ac11f300fd4fac1008e4029841e48604952cc0c4e249e

Contents?: true

Size: 701 Bytes

Versions: 13

Compression:

Stored size: 701 Bytes

Contents

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

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

RSpec::Core::RakeTask.new(:spec) 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']
  task.rspec_opts << '-tintegration'
end

RuboCop::RakeTask.new

task default: [:spec, :rubocop]

task all: [:default, :integration]

Version data entries

13 entries across 13 versions & 3 rubygems

Version Path
winrm-elevated-0.4.0 Rakefile
winrm-elevated-0.3.0 Rakefile
winrm-elevated-0.2.0 Rakefile
winrm-1.5.0 Rakefile
winrm-1.4.0 Rakefile
winrm-1.3.5 Rakefile
winrm-elevated-0.1.0 Rakefile
winrm-1.3.5.dev Rakefile
vagrant-cloudstack-1.2.0 vendor/bundle/gems/winrm-1.3.4/Rakefile
winrm-1.3.4 Rakefile
vagrant-cloudstack-1.1.0 vendor/bundle/gems/winrm-1.3.3/Rakefile
winrm-1.3.3 Rakefile
winrm-1.3.2 Rakefile