Skip to content

Instantly share code, notes, and snippets.

@keikun17
Last active December 16, 2015 08:49
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save keikun17/5409034 to your computer and use it in GitHub Desktop.
Save keikun17/5409034 to your computer and use it in GitHub Desktop.
Sigh... #ruby
{'key.with.dot': 'something'}
=> SyntaxError: (irb):7: syntax error, unexpected ':', expecting tASSOC
{'key.with.dot': 'something'}
^
{"key.with.dot": 'something'}
=> SyntaxError: (irb):8: syntax error, unexpected ':', expecting tASSOC
{key.with.dot: 'something'}
^
{"key.with.dot"=>"something"}
=> {"key.with.dot"=>"something"}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment