Hi all, I'm trying to set up insoshi for my new application. I got it to work using sqlite the first time I tried to install it but I actually want to install using mysql as that is what I want for the application. I installed as before all the gems (running into a problem with ferret, as before, that only version 0.11.5 runs on my system). I also created the database markets_development using the standard 'mysqladmin -u root create markets_development'.
When I run 'rake install' I get the following error: rake aborted undefined method 'partial_updates=' for activerecord::base:Class My database.yml looks like this: -------------------Begin database.yml--------------------------------------------------------------------- # MySQL. Versions 4.1 and 5.0 are recommended. # # Install the MySQL driver: # gem install mysql # On Mac OS X: # sudo gem install mysql -- --with-mysql-dir=/usr/local/mysql # On Mac OS X Leopard: # sudo env ARCHFLAGS="-arch i386" gem install mysql -- --with-mysql- config=/usr/local/mysql/bin/mysql_config # This sets the ARCHFLAGS environment variable to your native architecture # On Windows: # gem install mysql # Choose the win32 build. # Install MySQL and put its /bin directory on your path. # # And be sure to use new-style password hashing: # http://dev.mysql.com/doc/refman/5.0/en/old-client.html development: adapter: mysql encoding: utf8 database: markets_development username: root password: host: localhost # Warning: The database defined as 'test' will be erased and # re-generated from your development database when you run 'rake'. # Do not set this db to the same as development or production. test: adapter: mysql encoding: utf8 database: markets_test username: root password: host: localhost production: adapter: mysql encoding: utf8 database: markets_production username: root password: host: localhost -------------------End database.yml--------------------------------------------------------------------- --~--~---------~--~----~------------~-------~--~----~ Insoshi developer site: http://dogfood.insoshi.com/ Insoshi documentation: http://docs.insoshi.com/ You received this message because you are subscribed to the Google Groups "Insoshi" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [EMAIL PROTECTED] For more options, visit this group at http://groups.google.com/group/insoshi?hl=en -~----------~----~----~----~------~----~------~--~---
