I am learning rails and going back to ruby to understand how methods in rails (and ruby really work). When I see method calls like:
validates validates :first_name, :presence => true
I get confused. How do you write methods in ruby that accept symbols or hashes. The source code for the validates method is confusing too. Could someone please simplify this topic of using symbols as arguments in ruby class and instance methods for me?
UPDATE:
Good one @Dave! But What I was trying out was something like:
def full_name (:first_name, :last_name)
@first_name = :first_name
@last_name = :last_name
p "#{@first_name} #{last_name}"
end
full_name("Breta", "Von Sustern")
Which obviously raises errors. I am trying to understand: Why is passing symbols like this as arguments wrong if symbols are just like any other value?
I thought I'd add an update for Ruby 2+ since this is the first result I found for 'symbols as arguments'.
Since Ruby 2.0.0 you can also use symbols when defining a method. When calling the method these symbols will then act almost the same as named optional parameters in other languages. See example below:
As shown in the example, we omit
arg_two:
when calling the method and in the method body we can still access it as variablearg_two
. Also note that the variablearg_three
is indeed altered by the function call.I think all replies have missed the point of question; and the fact it is asked by someone who is - I guess - not clear on what a symbol is ?
As a newcomer to Ruby I had similar confusions and to me an answer like following would have made more sense
Method Arguments are local variables populated by passed in values.
You cant use symbols as Arguments by themselves, as you cant change value of a symbol.
In Ruby, if you call a method with a bunch of
name => value
pairs at the end of the argument list, these get automatically wrapped in aHash
and passed to your method as the last argument:There's nothing "special" about how you write the method, it's how you call it. It would be perfectly legal to just pass a regular Hash object as the
kwargs
parameter. This syntactic shortcut is used to implement named parameters in an API.A Ruby symbol is just a value as any other, so in your example,
:first_name
is just a regular positional argument.:presence
is a symbol used as a Hash key – any type can be used as a Hash key, but symbols are a common choice because they're immutable values.Symbols and hashes are values like any other, and can be passed like any other value type.
Recall that ActiveRecord models accept a hash as an argument; it ends up being similar to this (it's not this simple, but it's the same idea in the end):
This takes advantage of not having to put the hash in curly-brackets
{}
unless you need to disambiguate parameters (and there's a block parsing issue as well when you skip the parens).Similarly:
This outputs:
From there you can start to see how things like this work.
Symbols are not limited to hashes. They are identifiers, without the extra storage space of a string. It's just a way to say "this is ...."
A possible function definition for the validates call could be (just to simplify, I don't know off the top of my head what it really is):
Notice how the first symbol is a parameter all of its own, and the rest is the hash.