The `=>` symbol for building hash literals in Perl and Ruby.
0
votes
1answer
26 views
rubymine complaining about rails controller scaffold syntax
I'm scaffolding with rails, and the following code is being generated
format.json { render json: @leg, status: :created, location: @leg }
But RubyMine is complaining unless I switch it to
...
-1
votes
4answers
77 views
What is the difference between writing `:name => “String”` and `name: “String”`? [duplicate]
Is there a difference between writing
parameter: "String"
and the lengthier
:parameter => "String"
0
votes
2answers
81 views
What does the “=>” in “rescue Exception => e” do?
Given the example:
def method_of_doom
my_string = "I sense impending doom."
my_string.ah_ha_i_called_a_nonexistent_method
rescue NoMethodError => e:
puts "PROBLEM: " + e.to_s
rescue Exception:
...
23
votes
1answer
2k views
Is Hash Rocket deprecated?
The well-cited RIP Hash rocket post would seem to imply the Hash Rocket syntax (:foo => "bar") is deprecated in favor of the new-to-Ruby JSON-style hash (foo: "bar"), but I can't find any ...
7
votes
3answers
205 views
What's the syntax (=>) used in assign error object to variable of `rescue` method?
The rescue which could assigns a variable to reference the error object has this syntax (=>)
rescue => e
If rescue is the one of the general method call, what's the meaning of =>.
Could I ...
-2
votes
2answers
116 views
Why does Ruby use the '=>' notation? [closed]
Where did it come from?
Why didn't they use -> or some other notation?
11
votes
3answers
607 views
Is there any difference between the `:key => “value”` and `key: “value”` hash notations?
Is there any difference between :key => "value" (hashrocket) and key: "value" (Ruby 1.9) notations?
If not, then I would like to use key: "value" notation. Is there a gem that helps me to convert ...
4
votes
2answers
937 views
What's the difference between colon “:” and fat arrow “=>”
What's the difference between colon : and fat arrow => in Ruby? Or when to use what?
:foo => true
foo: true
4
votes
1answer
2k views
What is the “equals greater than” operator => in Ruby on Rails
In a Ruby on Rails tutorial, I am asked to type:
class Post < ActiveRecord::Base
validates :name, :presence => true
validates :title, :presence => true, :length => { :minimum ...
10
votes
5answers
3k views
In Ruby what does “=>” mean and how does it work?
While learning Ruby I've come across the "=>" operator on occasion. Usually I see it in the form of
:symbol => value
and it seems to be used frequently when passing values to functions. What ...