This method is deprecated or moved on the latest stable version.
The last existing version (v1_9_1_378) is shown here.
write_style_sheet()
private
Write out the style sheet used by the main frames
# File lib/rdoc/generator/html.rb, line 136
def write_style_sheet
return unless @template.constants.include? :STYLE or
@template.constants.include? 'STYLE'
template = RDoc::TemplatePage.new @template::STYLE
unless @options.css then
open RDoc::Generator::CSS_NAME, 'w' do |f|
values = {}
if @template.constants.include? :FONTS or
@template.constants.include? 'FONTS' then
values["fonts"] = @template::FONTS
end
template.write_html_on(f, values)
end
end
end