3 Star 0 Fork 0

mirrors_jcoleman/pathspec-ruby

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
Rakefile 702 Bytes
一键复制 编辑 原始数据 按行查看 历史
begin
require 'rspec/core/rake_task'
RSpec::Core::RakeTask.new(:spec)
rescue LoadError
puts 'rspec rake task failed to load'
end
require 'rubocop/rake_task'
require 'kramdown'
require 'fileutils'
RuboCop::RakeTask.new(:rubocop) do |t|
t.options = ['--display-cop-names']
end
task default: %i[rubocop spec docs]
desc 'Generate man page for executable script'
task :docs do
kramdown = Kramdown::Document.new(File.read('docs/pathspec-rb.md'))
FileUtils.mkdir_p 'docs/man'
File.open('docs/man/pathspec-rb.man.1', 'w') do |f|
f.write(kramdown.to_man)
end
FileUtils.mkdir_p 'docs/html'
File.open('docs/html/pathspec-rb.html', 'w') do |f|
f.write(kramdown.to_html)
end
end
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/mirrors_jcoleman/pathspec-ruby.git
git@gitee.com:mirrors_jcoleman/pathspec-ruby.git
mirrors_jcoleman
pathspec-ruby
pathspec-ruby
master

搜索帮助