Unify Rakefile style
This commit is contained in:
parent
edc9bc26fb
commit
8459f7c2be
1 changed files with 17 additions and 14 deletions
31
Rakefile
31
Rakefile
|
@ -1,28 +1,31 @@
|
||||||
# frozen_string_literal: true
|
# frozen_string_literal: true
|
||||||
|
|
||||||
require 'rubygems'
|
|
||||||
|
|
||||||
gemspec = Gem::Specification.load('lita-tox.gemspec')
|
|
||||||
|
|
||||||
github_user, github_project =
|
|
||||||
gemspec.homepage.scan(%r{^https://github\.com/([^/]+)/([^/]+)/?$})[0]
|
|
||||||
|
|
||||||
require 'bundler/gem_tasks'
|
require 'bundler/gem_tasks'
|
||||||
|
|
||||||
task default: %i[spec lint]
|
GEMSPEC = Gem::Specification.load 'lita-tox.gemspec'
|
||||||
|
|
||||||
require 'rspec/core/rake_task'
|
github_user, github_project =
|
||||||
RSpec::Core::RakeTask.new
|
GEMSPEC.homepage.scan(%r{^https://github\.com/([^/]+)/([^/]+)/?$})[0]
|
||||||
|
|
||||||
|
task default: %i[spec lint]
|
||||||
|
|
||||||
task lint: :rubocop
|
task lint: :rubocop
|
||||||
|
|
||||||
task fix: 'rubocop:auto_correct'
|
task fix: 'rubocop:auto_correct'
|
||||||
|
|
||||||
require 'rubocop/rake_task'
|
begin
|
||||||
RuboCop::RakeTask.new
|
require 'rspec/core/rake_task'
|
||||||
|
RSpec::Core::RakeTask.new
|
||||||
|
rescue LoadError
|
||||||
|
nil
|
||||||
|
end
|
||||||
|
|
||||||
require 'yard'
|
begin
|
||||||
YARD::Rake::YardocTask.new
|
require 'rubocop/rake_task'
|
||||||
|
RuboCop::RakeTask.new
|
||||||
|
rescue LoadError
|
||||||
|
nil
|
||||||
|
end
|
||||||
|
|
||||||
desc 'Generate changelog'
|
desc 'Generate changelog'
|
||||||
task :changelog, [:token] do |_t, args|
|
task :changelog, [:token] do |_t, args|
|
||||||
|
|
Reference in a new issue