-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathRakefile
More file actions
43 lines (40 loc) · 1.16 KB
/
Rakefile
File metadata and controls
43 lines (40 loc) · 1.16 KB
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
37
38
39
40
41
42
43
# frozen_string_literal: true
require 'rake/clean'
require 'rubygems'
require 'rubygems/package_task'
require 'rdoc/task'
# require 'cucumber'
# require 'cucumber/rake/task'
Rake::RDocTask.new do |rd|
rd.main = 'README.md'
rd.rdoc_files.include('README.md', 'lib/**/*.rb', 'bin/**/*')
rd.title = 'imapcli'
end
# CUKE_RESULTS = 'results.html'
# CLEAN << CUKE_RESULTS
# desc 'Run features'
# Cucumber::Rake::Task.new(:features) do |t|
# opts = "features --format html -o #{CUKE_RESULTS} --format progress -x"
# opts += " --tags #{ENV['TAGS']}" if ENV['TAGS']
# t.cucumber_opts = opts
# t.fork = false
# end
#
# desc 'Run features tagged as work-in-progress (@wip)'
# Cucumber::Rake::Task.new('features:wip') do |t|
# tag_opts = ' --tags ~@pending'
# tag_opts = ' --tags @wip'
# t.cucumber_opts = "features --format html -o #{CUKE_RESULTS} --format pretty -x -s#{tag_opts}"
# t.fork = false
# end
#
# task :cucumber => :features
# task 'cucumber:wip' => 'features:wip'
# task :wip => 'features:wip'
# require 'rake/testtask'
# Rake::TestTask.new do |t|
# t.libs << "test"
# t.test_files = FileList['test/*_test.rb']
# end
#
# task :default => [:test,:features]