Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

In ruby 1.9 is there a way to define this hash with the new syntax?

irb> { a:  2 }
=> {:a=>2}

irb> { a-b:  2 }
SyntaxError: (irb):5: syntax error, unexpected tLABEL
{ a-b:  2 }
      ^

with the old one, it's working:

irb> { :"a-b" =>  2 }
=> {:"a-b"=>2}
share|improve this question

3 Answers

up vote 39 down vote accepted

There are some legitimate symbols that cannot be used with the new syntax. I cannot find a reference, but it appears that a symbol name matching /[a-zA-Z_][a-zA-Z_0-9]*/ is allowed with the new syntax. If the symbol name contains special characters such as '-', you have to use the Ruby 1.8 syntax, :'my-symbol-name'

share|improve this answer
1  
Which makes sense; how is the Ruby interpreter supposed to read that, otherwise? – Trevoke Jan 25 '10 at 19:10
18  
I checked in parse.c and it seems that with the new syntax the symbol is parsed as tLabel token. And matching name is more like /[a-zA-Z_][a-zA-Z0-9]/ :-) – MBO Jan 25 '10 at 19:24
@MBO, Extra points for going to the source. I've edited the regex in my answer. Thanks! – Wayne Conrad Jan 25 '10 at 20:11
3  
sad news for purists :( – prusswan Aug 21 '12 at 6:49
@prusswan - I can't imagine a purist programming in Ruby. – Wayne Conrad Aug 21 '12 at 13:01

To use dashes with the new syntax:

<%= link_to "Link", link_path, {data: {something: 'value1', somethingelse: 'value2'}} %>

This will generate:

<a href="/link" data-something='value1' data-somethingelse='value2'>Link</a>

This might not exactly be your particular use case, but I found this post while trying to find an answer myself so I thought I'd share my findings.

share|improve this answer
good news for purists :) – prusswan Aug 21 '12 at 6:49
Nice - this is exactly what I was trying to do, thanks! – Brad Werth Oct 22 '12 at 19:16

You can combine the old and new syntax:

{a: 1, b: 2, :'c-c' => 3, d: 4}
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.