I have run into a bit of an odd problem. I have searched the web with no definitive answer. When running rake migrate I get syntax error on line 18, col 2: ` host: localhost''. Heres the yml: # MySQL (default setup). Versions 4.1 and 5.0 are recommended. # # Install the MySQL driver: # gem install mysql # On MacOS X: # gem install mysql -- --include=/usr/local/lib # 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 database: the_mighty_database username: the_mighty_username password: the_mighty_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 database: depot_test username: root password: host: localhost production: adapter: mysql database: depot_production username: root password: host: localhost I have checked the file over to no avail. Everything seems correctly structured for YAML. any takers? Jarod --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org To unsubscribe from this group, send email to rubyonrails-talk-unsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en -~----------~----~----~----~------~----~------~--~---
On 2/28/07, Jarod Reid <jarod@attollo.net> wrote:> > > > > I have run into a bit of an odd problem. I have searched the web with no > definitive answer. When running rake migrate I get > > syntax error on line 18, col 2: ` host: localhost'. > > Heres the yml: >*snip*> > I have checked the file over to no avail. Everything seems correctly > structured for YAML� any takers? >Make sure you only use spaces. YAML blows up on tabs. HTH, Isak> > > Jarod > > > > > > >--~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this group, send email to rubyonrails-talk@googlegroups.com To unsubscribe from this group, send email to rubyonrails-talk-unsubscribe@googlegroups.com For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en -~----------~----~----~----~------~----~------~--~---
It''s very likely that the real problem is on line 17 (which I assume you edited for content when posting) -Rob Rob Biedenharn http://agileconsultingllc.com Rob-xa9cJyRlE0mWcWVYNo9pwxS2lgjeYSpx@public.gmane.org On Feb 28, 2007, at 9:20 AM, Jarod Reid wrote:> I have run into a bit of an odd problem. I have searched the web > with no definitive answer. When running rake migrate I get > > > > syntax error on line 18, col 2: ` host: localhost''. > > > > Heres the yml: > > > > # MySQL (default setup). Versions 4.1 and 5.0 are recommended. > > # > > # Install the MySQL driver: > > # gem install mysql > > # On MacOS X: > > # gem install mysql -- --include=/usr/local/lib > > # 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 > > database: the_mighty_database > > username: the_mighty_username > > password: the_mighty_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 > > database: depot_test > > username: root > > password: > > host: localhost > > > > production: > > adapter: mysql > > database: depot_production > > username: root > > password: > > host: localhost > > > > > > I have checked the file over to no avail. Everything seems > correctly structured for YAML any takers? > > > > Jarod--~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org To unsubscribe from this group, send email to rubyonrails-talk-unsubscribe@googlegroups.com For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en -~----------~----~----~----~------~----~------~--~---