Class: RDoc::Generator::SHtml
- Inherits:
-
Object
- Object
- RDoc::Generator::SHtml
- Includes:
- ERB::Util, SDoc::GitHub, SDoc::Helpers, SDoc::Templatable
- Defined in:
- lib/sdoc/generator/shtml.rb
Defined Under Namespace
Classes: FilesTree
Constant Summary collapse
- GENERATOR_DIRS =
[File.join('sdoc', 'generator'), File.join('rdoc', 'generator')]
- TYPE_CLASS =
Used in js to reduce index sizes
1
- TYPE_METHOD =
2
- TYPE_FILE =
3
- TREE_FILE =
File.join 'panel', 'tree.js'
- SEARCH_INDEX_FILE =
File.join 'panel', 'search_index.js'
- FILE_DIR =
'files'
- CLASS_DIR =
'classes'
- RESOURCES_DIR =
File.join('resources', '.')
Instance Attribute Summary collapse
-
#basedir ⇒ Object
readonly
Returns the value of attribute basedir.
Class Method Summary collapse
Instance Method Summary collapse
- #class_dir ⇒ Object
- #file_dir ⇒ Object
- #generate(top_levels) ⇒ Object
-
#initialize(options) ⇒ SHtml
constructor
A new instance of SHtml.
Methods included from SDoc::Helpers
Methods included from SDoc::Templatable
#eval_template, #include_template, #render_template
Methods included from SDoc::GitHub
Constructor Details
#initialize(options) ⇒ SHtml
Returns a new instance of SHtml.
64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 |
# File 'lib/sdoc/generator/shtml.rb', line 64 def initialize() @options = if @options.respond_to?('diagram=') @options.diagram = false end @github_url_cache = {} template = @options.template || 'direct' templ_dir = self.class.template_dir template raise RDoc::Error, "could not find template #{template.inspect}" unless templ_dir @template_dir = Pathname.new File.(templ_dir) @basedir = Pathname.pwd. end |
Instance Attribute Details
#basedir ⇒ Object (readonly)
Returns the value of attribute basedir.
48 49 50 |
# File 'lib/sdoc/generator/shtml.rb', line 48 def basedir @basedir end |
Class Method Details
.for(options) ⇒ Object
50 51 52 |
# File 'lib/sdoc/generator/shtml.rb', line 50 def self.for() self.new() end |
.template_dir(template) ⇒ Object
54 55 56 57 58 59 60 61 62 |
# File 'lib/sdoc/generator/shtml.rb', line 54 def self.template_dir template $LOAD_PATH.map do |path| GENERATOR_DIRS.map do |dir| File.join path, dir, 'template', template end end.flatten.find do |dir| File.directory? dir end end |
Instance Method Details
#class_dir ⇒ Object
96 97 98 |
# File 'lib/sdoc/generator/shtml.rb', line 96 def class_dir CLASS_DIR end |
#file_dir ⇒ Object
100 101 102 |
# File 'lib/sdoc/generator/shtml.rb', line 100 def file_dir FILE_DIR end |
#generate(top_levels) ⇒ Object
82 83 84 85 86 87 88 89 90 91 92 93 94 |
# File 'lib/sdoc/generator/shtml.rb', line 82 def generate( top_levels ) @outputdir = Pathname.new( @options.op_dir ).( @basedir ) @files = top_levels.sort @classes = RDoc::TopLevel.all_classes_and_modules.sort # Now actually write the output copy_resources generate_class_tree generate_search_index generate_file_files generate_class_files generate_index_file end |