Ruby on Rails | Screencasts | Download | Documentation | Weblog | Community | Source

Changeset 4336

Show
Ignore:
Timestamp:
05/12/06 04:06:41 (2 years ago)
Author:
bitsweat
Message:

The app generator detects the XAMPP package's MySQL socket location. Closes #3832.

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/railties/CHANGELOG

    r4328 r4336  
    11*SVN* 
     2 
     3* The app generator detects the XAMPP package's MySQL socket location. #3832 [elliot@townx.org] 
    24 
    35* The app generator sets a session key in application.rb so apps running on the same host may distinguish their cookies. #2967 [rcoder, rails-bug@owl.me.uk] 
  • trunk/railties/lib/rails_generator/generators/applications/app/app_generator.rb

    r4328 r4336  
    155155    "/opt/local/var/run/mysqld/mysqld.sock",  # mac + darwinports + mysql 
    156156    "/opt/local/var/run/mysql4/mysqld.sock",  # mac + darwinports + mysql4 
    157     "/opt/local/var/run/mysql5/mysqld.sock"   # mac + darwinports + mysql5 
     157    "/opt/local/var/run/mysql5/mysqld.sock",  # mac + darwinports + mysql5 
     158    "/opt/lampp/var/mysql/mysql.sock"         # xampp for linux 
    158159  ] 
    159160end