Module: Dropdown
- Defined in:
- lib/dropdown.rb,
lib/dropdown/blog.rb,
lib/dropdown/post.rb,
lib/dropdown/errors.rb,
lib/dropdown/version.rb,
lib/dropdown/constants.rb,
lib/dropdown/inflector.rb,
lib/dropdown/processor.rb,
lib/dropdown/configuration.rb,
lib/dropdown/parsers/parser.rb,
lib/dropdown/dropbox/session.rb,
lib/dropdown/renderer_factory.rb,
lib/dropdown/markdown_renderer.rb,
lib/dropdown/readers/file_reader.rb,
lib/dropdown/readers/dropbox_reader.rb,
lib/dropdown/readers/reader_factory.rb,
lib/dropdown/iterators/file_iterator.rb,
lib/dropdown/parsers/metadata_parser.rb,
lib/dropdown/output_stores/file_store.rb,
lib/dropdown/parsers/excerpt_extractor.rb,
lib/dropdown/iterators/dropbox_iterator.rb,
lib/dropdown/iterators/iterator_factory.rb,
lib/dropdown/output_stores/dropbox_store.rb,
lib/dropdown/output_stores/output_store_factory.rb
Defined Under Namespace
Modules: Dropbox, Iterators, OutputStores, Parsers, Readers
Classes: Blog, Configuration, FileTypeError, Inflector, MarkdownRenderer, Post, Processor, RendererFactory
Constant Summary
collapse
- VERSION =
"0.8.1"
- MARKDOWN_EXTENSIONS =
%w(.md .markdown)
- HTML_EXTENSIONS =
%w(.html)
Class Method Summary
collapse
Class Method Details
.configuration ⇒ Object
16
17
18
|
# File 'lib/dropdown.rb', line 16
def self.configuration
@configuration ||= Dropdown::Configuration.new
end
|
20
21
22
|
# File 'lib/dropdown.rb', line 20
def self.configure
yield configuration if block_given?
end
|