加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
Rakefile 607 Bytes
一键复制 编辑 原始数据 按行查看 历史
Alexander Mankuta 提交于 2020-12-27 22:06 . Use prawn-dev
# frozen_string_literal: true
GEMSPEC = File.expand_path('prawn.gemspec', __dir__)
require 'prawn/dev/tasks'
task default: %i[spec rubocop]
desc "Generate the 'Prawn by Example' manual"
task :manual do
puts 'Building manual...'
require File.expand_path(File.join(__dir__, %w[manual contents]))
prawn_manual_document.render_file('manual.pdf')
puts 'The Prawn manual is available at manual.pdf. Happy Prawning!'
end
desc 'Run a console with Prawn loaded'
task :console do
require 'irb'
require 'irb/completion'
require_relative 'lib/prawn'
Prawn.debug = true
ARGV.clear
IRB.start
end
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化