Method: Brief::Configuration#current

Defined in:
lib/brief/configuration.rb

#currentObject



15
16
17
18
19
20
21
22
23
24
25
26
27
28
# File 'lib/brief/configuration.rb', line 15

def current
  @current ||= {
    docs_path: 'docs',
    models_path: 'models',
    templates_path: 'templates',
    data_path: 'data',
    assets_path: 'assets',
    lib_path: "lib",

    # line wrapping in vim and other editors creates
    # a bunch of extra br/ tags
    preserve_gfm_line_breaks: false
  }.to_mash
end