forked from WinRb/WinRM
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Rakefile
33 lines (26 loc) · 854 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
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(__dir__))
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 = 'tests/spec/**/*_spec.rb'
task.rspec_opts = ['--color', '-f documentation', '-r ./tests/spec/spec_helper']
end
# Run the integration test suite
RSpec::Core::RakeTask.new(:integration) do |task|
task.pattern = 'tests/integration/*_spec.rb'
task.rspec_opts = ['--color', '-f documentation', '-r ./tests/integration/spec_helper']
end
RuboCop::RakeTask.new
task default: %i[spec rubocop]
task all: %i[default integration]