class DocuBot::Writer

Constants

DIR
HAML_OPTIONS
INSTALLED_WRITERS

Public Class Methods

by_type() click to toggle source
# File lib/docubot/writer.rb, line 10
def self.by_type
        @@by_type
end
handles_type( type ) click to toggle source
# File lib/docubot/writer.rb, line 7
def self.handles_type( type )
        @@by_type[type.to_s.downcase] = self
end
new( bundle ) click to toggle source
# File lib/docubot/writer.rb, line 15
def initialize( bundle )
        @bundle = bundle
end