vote up 0 vote down star

It would be convenient to use Ruby on Rails for a small website project that has no current need for a database. I know I could create an empty database in MySQL and go from there, but does anyone know a better way to run Rails without a database?

Thanks,

  • Rob
flag

2 Answers

vote up 3 vote down check

Uncomment this line in the environment.rb

config.frameworks -= [ :active_record, :active_resource, :action_mailer]

link|flag
Thanks. This seems to be the simplest way to exclude the unnecessary active record code. – RobbieCanuck May 4 at 18:38
vote up 1 vote down

If you don't need a database then you probably don't need to have the bulk of Rails. You may want a smaller more customizable framework to work with.

Sinatra is a tiny framework that is great for serving up basic static pages.

But if you insist on using Rails here is an article that will show you how to do just that or here.

link|flag
Thanks - both of these links refer to the Rails Recipes book and contain steps to get testing working with a database-less rails application. I was being lazy and hoped to leverage the rails infrastructure already on the server for other apps, but Sintatra looks intriguing. – RobbieCanuck May 4 at 18:42

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.