Module: Burr

Defined in:
lib/burr/ui.rb,
lib/burr.rb,
lib/burr/cli.rb,
lib/burr/book.rb,
lib/burr/plugin.rb,
lib/burr/server.rb,
lib/burr/version.rb,
lib/burr/exporter.rb,
lib/burr/converter.rb,
lib/burr/generator.rb,
lib/burr/dependency.rb,
lib/burr/plugins/toc.rb,
lib/burr/plugins/link.rb,
lib/burr/exporters/pdf.rb,
lib/burr/plugins/aside.rb,
lib/burr/plugins/table.rb,
lib/burr/exporters/epub.rb,
lib/burr/exporters/site.rb,
lib/burr/plugins/figure.rb,
lib/burr/eeepub_ext/maker.rb,
lib/burr/liquid_ext/block.rb,
lib/burr/plugins/codeblock.rb,
lib/burr/liquid_ext/extends.rb,
lib/burr/plugins/parser_plugin.rb

Overview

Defined Under Namespace

Modules: Dependency, Server, Version Classes: AsidePlugin, BlockDrop, BlockTag, Book, Cli, CodeblockPlugin, Converter, Epub, EpubMaker, Exporter, ExtendsTag, FigurePlugin, Generator, LinkPlugin, PDF, ParserPlugin, Plugin, Site, TablePlugin, TocPlugin, UI

Class Method Summary collapse

Class Method Details

.configurationObject



46
47
48
49
50
51
52
53
54
# File 'lib/burr.rb', line 46

def self.configuration
  path = "#{Dir.pwd}/config.yml"

  begin
    YAML.load_file path
  rescue => e
    puts "#{e.message}"
  end
end