forked from middleman/middleman
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgem_rake_helper.rb
41 lines (32 loc) · 950 Bytes
/
gem_rake_helper.rb
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
# frozen_string_literal: true
require 'rake'
require 'yard'
require 'bundler/gem_tasks'
# Skip the releasing tag
class Bundler::GemHelper
def release_gem(*args)
p args
guard_clean
built_gem_path = build_gem
rubygem_push(built_gem_path)
end
end
require 'cucumber/rake/task'
Cucumber::Rake::Task.new do |t|
exempt_tags = ["--tags 'not @wip'"]
t.cucumber_opts = "--fail-fast --require features --color #{exempt_tags.join(' ')} --strict"
end
Cucumber::Rake::Task.new(:cucumber_wip) do |t|
exempt_tags = ['--tags @wip']
t.cucumber_opts = "--fail-fast --require features --color #{exempt_tags.join(' ')} --strict"
end
require 'rspec/core/rake_task'
desc 'Run RSpec'
RSpec::Core::RakeTask.new do |spec|
spec.pattern = 'spec/**/*_spec.rb'
spec.rspec_opts = ['--color', '--format documentation']
end
desc 'Run tests, both RSpec and Cucumber'
task test: %i[spec cucumber]
YARD::Rake::YardocTask.new
task default: :test