I am having trouble trying to run the following ruby script on OSX (Leopard).
require \'sqlite3\' database = SQLite3::Database.new( \"new.database\"
Fixed it with this commands:
gem uninstall sqlite3 gem uninstall sqlite3-ruby sudo gem install sqlite3 -- --with-sqlite3-dir=/sw
Ted