forked from copycopter/copycopter-ruby-client
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathRakefile
More file actions
28 lines (24 loc) · 658 Bytes
/
Rakefile
File metadata and controls
28 lines (24 loc) · 658 Bytes
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
require 'bundler/gem_tasks'
require 'appraisal'
require 'cucumber/rake/task'
require 'rspec/core/rake_task'
require 'yard'
desc 'Default: run the specs and features.'
task :default => :spec do
system "rake -s appraisal cucumber;"
end
desc 'Test the copycopter_client plugin.'
RSpec::Core::RakeTask.new do |t|
t.rspec_opts = ['--color', "--format progress"]
t.pattern = 'spec/copycopter_client/**/*_spec.rb'
end
desc "Run cucumber features"
Cucumber::Rake::Task.new do |t|
t.cucumber_opts = [
'--tags', '~@wip',
'--format', (ENV['CUCUMBER_FORMAT'] || 'progress')
]
end
YARD::Rake::YardocTask.new do |t|
t.files = ['lib/**/*.rb']
end