Module: TomlMultilineString
- Defined in:
- lib/toml/string.rb
Instance Method Summary collapse
Instance Method Details
#value ⇒ Object
27 28 29 30 31 32 33 34 |
# File 'lib/toml/string.rb', line 27 def value aux = captures[:text].first.value # Remove spaces on multilined Singleline strings aux.gsub!(/\\\r?\n[\n\t\r ]*/, '') TomlBasicString.transform_escaped_chars aux end |