When & used before Proc object in method invocation, it treats the Proc as if it was an ordinary block following the invocation.
When & used before other type of object (symbol :first_name in your case) in method invocation, it tries to call to_proc on this object and if it does not have to_proc method you will get TypeError.
Generally &:first_name is the same as &:first_name.to_proc.
Symbol#to_proc Returns a Proc object which respond to the given method by sym.
:first_name.to_proc will return Proc that looks like this:
proc { |obj, *args, &block| obj.first_name(*args, &block) }
this Proc invokes method specified by original symbol on the object passes as the first parameter and pass all the rest parameters + block as this method arguments.
One more example:
> p = :each.to_proc
=> #<Proc:0x00000001bc28b0>
> p.call([1,2,3]) { |item| puts item+1 }
2
3
4
=> [1, 2, 3]
map(&:name)mean in Ruby?, What exactly is&:capitalizein Ruby?, Ruby/Ruby on Rails ampersand colon shortcut, Ruby :&:symbolsyntax, … – Jörg W Mittag Feb 8 '12 at 9:25&:lastRuby Construct Called?, What do you call the&:operator in Ruby?, What doesmap(&:name)do in this Ruby code?, What are:+and&+in ruby?,&:views_countinPost.published.collect(&:views_count), Ruby Proc Syntax, How does “(1..4).inject(&:+)” work in Ruby, … – Jörg W Mittag Feb 8 '12 at 9:26&:property?, What does the&mean in the following ruby syntax?, Why would one use the unary operator on a property in ruby? i.e&:first, and how doesArray#maphave parameter to do something like this?. – Jörg W Mittag Feb 8 '12 at 9:26