19 Aug
Suppose you have a Model called Article that contains a text field and a format field.
You would like to use haml, textile or HTML to edit your Article from the admin interface.
create_table "articles", :force => true do |t|
t.string "title"
t.text [...]
Posted in Uncategorized by: admin
No Comments
06 Aug
To install the great Mod_Rails on Gentoo linux it’s as easy as 5 steps.
Since you are Gentoo user, i don’t need to go to details. You know what you doing.
1. Recompile Apache non-threaded
add this to /etc/portage/package.use
www-servers/apache -threads
and this to /etc/make.conf
APACHE2_MPMS=”prefork”
2. Re emerge apache
# emerge -va apache
3. Passenger is in gentoo portage, but its [...]
Posted in Uncategorized by: admin
No Comments