35 lines
701 B
Ruby
35 lines
701 B
Ruby
# 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'
|
|
|
|
task default: %i[spec lint]
|
|
|
|
require 'rspec/core/rake_task'
|
|
RSpec::Core::RakeTask.new
|
|
|
|
task lint: :rubocop
|
|
|
|
task fix: 'rubocop:auto_correct'
|
|
|
|
require 'rubocop/rake_task'
|
|
RuboCop::RakeTask.new
|
|
|
|
require 'yard'
|
|
YARD::Rake::YardocTask.new
|
|
|
|
desc 'Generate changelog'
|
|
task :changelog, [:token] do |_t, args|
|
|
cmd = 'github_changelog_generator'
|
|
cmd << " -u #{github_user}"
|
|
cmd << " -p #{github_project}"
|
|
cmd << " -t #{args[:token]}" if args[:token]
|
|
|
|
sh cmd
|
|
end
|