Where can I find an explanation of what the "=>
" operator means in Ruby?
Let me give more detail. If you have this:
class Acct < ActiveRecord::Base
validates_confirmation_of :password, :email_address, :on => :create
end
What is the '=>' operator doing in this case? Thanks