There are PHP lbraries out there that attempt to clone the way rails works but they're mostly ineffective just because Ruby has some interested language characteristics that allow a lot of "magic" to happen 
Sure it'd be very easy to create a 5 page "mostly" static website:
Code:
rails MyApp
script/generate controller page_one
...
Then just go to page_one:
Code:
class PageOneController < ApplicationController
# Add any actions... none are needed for an index though, so if its just static you dont need any
end
Go to views/page_one and create index.rhtml and add your content.
It sounds long but really, you dont' even have to deal with the content being served at all, jsut fill in the page at index.rhtml.
Bookmarks