Is there a guide to Rails for experienced Rubyists?
A few years back, I started learning Ruby/Rails from some beginner's guide for Rails. I had learned the basics of Rails then, such as some of the convention over configurat开发者_StackOverflowion for models and routes, and how to use helpers etc. However, I didn't stick with it long because I found Sinatra soon thereafter, and decided I personally liked it much better.
I ended up really loving Ruby though, and I've written a lot of Ruby since, almost none of which was for any Rails project. However, it turns out that the majority of Ruby work available is for Rails applications. So I'd like to take another stab at Rails now.
Now, the reference is great and has a lot of good information, but I only look at a reference for the particular things I need and don't remember off the top of my head. But it's unlikely I'll come across details like script/console
in the reference.
I also don't want to go through beginners' tutorials as they seem to all assume that you don't know Ruby or programming even. I don't want to wade through explanations of what a conditional statement is or details about Ruby which I already know interspersed among the Rails information.
I just want a succinct, no-nonsense overview/guide to Rails (without Ruby information intermixed). Does it exist?
The rails guides are by far my favorite resource!
http://guides.rubyonrails.org/
I would recommend The Rails 3 Way for a good introduction to Rails at both a high level and fine grained details, without the "Welcome to Programming" tone.
I just got this one, and it looks really good so far:
http://pragprog.com/titles/jvrails/crafting-rails-applications
Certainly take a look at http://railscasts.com for lots of different Rails matters. It's a very important resource.
Another resource that many use (i have the book as well) is Rails Example :
http://ruby.railstutorial.org/
You might want to take a look at this advanced Ruby on Rails configuration guides. It's a relatively young yet still growing resource full of end to end explanations on how to integrate Ruby on Rails framework with multiple tools such as commonly used loggers, static code analysis tools, useful testing frameworks, and continuous integration providers.
精彩评论