forked from WinRb/WinRM
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathRakefile
36 lines (29 loc) · 825 Bytes
/
Rakefile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
# 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__))
desc 'Open a Pry console for this library'
task :console do
require 'pry'
require 'winrm'
ARGV.clear
Pry.start
end
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]