mirror of
https://github.com/middleman/middleman.git
synced 2022-11-09 12:20:27 -05:00
efd1ef69d6
Upgrade our deps Drop support for Ruby 2.2 (because some deps have) Update rubocop and lints
41 lines
950 B
Ruby
41 lines
950 B
Ruby
# 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
|