Module: Yamlr::Indicators
- Defined in:
- lib/yamlr/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
.options ⇒ Object
13 14 15 16 17 18 19 20 21 22 23 |
# File 'lib/yamlr/indicators.rb', line 13 def self. { :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 |