Module: Cheeba::Indicators

Defined in:
lib/cheeba/indicators.rb

Constant Summary collapse

DOC_START =
'---'
DOC_TERM =
'...'
HASH =
':'
SYMBOL =
':'
ARRAY =
'-'
COMMENT =
'#'
LINE_END =
"\n"
SPACE =
"\s"
INDENT =
2

Class Method Summary collapse

Class Method Details

.optionsObject



13
14
15
16
17
18
19
20
21
22
23
# File 'lib/cheeba/indicators.rb', line 13

def self.options
  { :doc_start  => DOC_START,
    :doc_term   => DOC_TERM,
    :hash       => HASH,
    :symbol     => SYMBOL,
    :array      => ARRAY,
    :comment    => COMMENT,
    :line_end   => LINE_END,
    :space      => SPACE,
    :indent     => INDENT }
end