I'm reading a Ruby book but it doesn't explain the following:
What is this:
validates :name, :presence => trueI mean I know what it does but what's
validates? Is it a method of the validator class? If so, how come it's called without mentioning the class name first?What's the meaning of
:in the previous code and in Rails on general?
In the following code:
<%= form_for([@post, @post.comments.build]) do |f| %>Is
form_foran object or a procedural function?What's the meaning of the
|character in|f|
In
<%= link_to 'Edit Post', edit_post_path(@post) %>Who, where and when was
edit_post_pathmethod defined?To which class it belongs?
symbolin ruby. If you want to learn ruby, i recommend "The Wellgrounded Rubyist", and to learn rails "Agile Webdevelopment with Rails". These are the best imho to get you started. – nathanvda May 31 '11 at 11:14