Installing SQLite to work with Ruby on Windows March 28, 2009
Posted by artiko in: Software , Web , Windows , trackbackIf we want our applications written in Ruby on Rails use the local SQLite database performance just three simple steps:
- go to page http://www.sqlite.org/download.html and the download archive sqlitedll section Precompiled Binaries For Windows
- Extract both files to the folder that contains the Ruby binaries (for example, C: \ ruby \ bin)
- at the command prompt, type
gem install --version 1.2.3 sqlite3-ruby
That's it. Now you just have to configure our application to the base set its configuration as follows:
production:
adapter: sqlite3
dbfile: db/redmine.db




Comments »
No comments yet - be the first?