Sha256: bccfc5d21edeed90c6d072916b6b216ab0080d2e19e086a12ab315f06c350999

Contents?: true

Size: 402 Bytes

Versions: 1

Compression:

Stored size: 402 Bytes

Contents

QUOTING = {}

QUOTING['single_quotes_no_interpolation'] =
  %q(foo = 'bar'
)

QUOTING['double_quotes_with_interpolation'] =
  %q(foo = "bar#{baz}"
)

QUOTING['double_quotes_no_interpolation'] =
  %q(foo = "bar"
)

QUOTING['double_quotes_no_interpolation_twice'] =
  %q(foo = "bar" + "baz"
)

QUOTING['escape_sequence'] =
  %q(foo = "bar\n"
)

QUOTING['nested_quotes'] =
  %q(foo = "foo#{bar('baz')}"
)

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
tailor-1.4.1 spec/support/string_quoting_cases.rb