mirror of https://github.com/docusealco/docuseal
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
54 lines
1.3 KiB
54 lines
1.3 KiB
# require "sdoc"
|
|
require "rdoc/task"
|
|
require_relative "../lib/net/imap"
|
|
require 'rdoc/rdoc' unless defined?(RDoc::Markup::ToHtml)
|
|
|
|
module RDoc::Generator
|
|
module NetIMAP
|
|
|
|
module RemoveRedundantParens
|
|
def param_seq
|
|
super.sub(/^\(\)\s*/, "")
|
|
end
|
|
end
|
|
|
|
# render "[label] data" lists as tables. adapted from "hanna-nouveau" gem.
|
|
module LabelListTable
|
|
def list_item_start(list_item, list_type)
|
|
case list_type
|
|
when :NOTE
|
|
%(<tr><td class='label'>#{Array(list_item.label).map{|label| to_html(label)}.join("<br />")}</td><td>)
|
|
else
|
|
super
|
|
end
|
|
end
|
|
|
|
def list_end_for(list_type)
|
|
case list_type
|
|
when :NOTE then
|
|
"</td></tr>"
|
|
else
|
|
super
|
|
end
|
|
end
|
|
end
|
|
|
|
end
|
|
end
|
|
|
|
class RDoc::AnyMethod
|
|
prepend RDoc::Generator::NetIMAP::RemoveRedundantParens
|
|
end
|
|
|
|
class RDoc::Markup::ToHtml
|
|
LIST_TYPE_TO_HTML[:NOTE] = ['<table class="rdoc-list note-list"><tbody>', '</tbody></table>']
|
|
prepend RDoc::Generator::NetIMAP::LabelListTable
|
|
end
|
|
|
|
RDoc::Task.new do |doc|
|
|
doc.title = "net-imap #{Net::IMAP::VERSION}"
|
|
doc.rdoc_dir = "doc"
|
|
doc.options << "--template-stylesheets" << "docs/styles.css"
|
|
doc.generator = "darkfish" # TODO: fix issues with aliki
|
|
end
|