Ruby on Rails
Scaffold

not anymore (since rails 2.0. use scaffold generator)

Go See ScaffoldGenerator

Frustratingly, rails 2.0 breaks chapter 1 of every existing quality rails tutorial, because you can’t say


class EntryController < ApplicationController
  scaffold :post
end


anymore. Instead, run
  ./script/generate scaffold Foo bar:integer fubar:string

then do the
rake db:drop:all; 
rake db:create:all; 
rake db:migrate; 
rake test

dance.



A french article including a scaffold example : Ma première application RubyOnRails

A Dutch scaffolding article is also available.



Scaffolding plugins

ActiveScaffold
Streamlined Framework
Hobo
Auto-Admin
Scaffold in Rails 2.0

“OpenQuestion
“anyone worked with a Parallel Programming Scaffold with an MPI for Multi-Core Processors?
I do believe that this will put Ruby firmly on the “FastTrack” Rails and place it firmly at the top of the programming world stack. We have been doing the same coding for Single Instruction, Single Data Steam CPU’s – so without Parallel Programming we are not fully exploiting the performance of the new generation Quad-core CPU’s. Lodewyk Schuermans