Instead of blogging some of the articles, I decided to write those as Rails guides. So go ahead and check them out !
- Rails on Rack – Overview of Rails’ Rack integration and middleware/metal interfaces
- Performance Testing Rails Applications – Using Rails’ built in performance test suite for profiling and benchmarking your Rails application
I also wrote a lot of the Active Record Query Interface guide. Of course my guides aren’t really eligible for the guides hackfest prizes. But hey, you could still win them by writing a new guide !






Your AR Query Interface guide is great – a must read for all reails newbies.
Is it within it’s scope to include named scopes also ? (no pun intended)
Hey,
We have a new guide coming up for named scopes. So hopefully that’ll fill the void !
Hi Pratik,
First, thank for the information.
I am new to Rack and found documentation on your web site:
app = Rack::Builder.new {
use Rails::Rack::LogTailer unless options[:detach]
use Rails::Rack::Debugger if options[:debugger]
map “/” do use Rails::Rack::Static
run ActionController::Dispatcher.new end
}.to_app
Can you provide an example how do I use this with script/server for WEBrick?
Thanks,
Lee