mirror of
https://github.com/rails/rails.git
synced 2022-11-09 12:12:34 -05:00
Windows: eliminate the socket option in database.yml. Closes #2924.
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@3082 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
This commit is contained in:
parent
db871c8d54
commit
ae76e22731
3 changed files with 33 additions and 15 deletions
|
@ -1,5 +1,7 @@
|
|||
*SVN*
|
||||
|
||||
* Windows: eliminate the socket option in database.yml. #2924 [Wayne Vucenic <waynev@gmail.com>]
|
||||
|
||||
* Eliminate nil from newly generated logfiles. #2927 [Blair Zajac <blair@orcaware.com>]
|
||||
|
||||
* Update to Prototype 1.4.0_rc3. Closes #1893, #2505, #2550, #2748, #2783. [Sam Stephenson]
|
||||
|
|
|
@ -1,8 +1,13 @@
|
|||
# MySQL (default setup). Versions 4.1 and 5.0 are recommended.
|
||||
#
|
||||
# Get the fast C bindings:
|
||||
# Install the MySQL driver:
|
||||
# gem install mysql
|
||||
# (on OS X: gem install mysql -- --include=/usr/local/lib)
|
||||
# On MacOS X:
|
||||
# gem install mysql -- --include=/usr/local/lib
|
||||
# On Windows:
|
||||
# There is no gem for Windows. Install mysql.so from RubyForApache.
|
||||
# http://rubyforge.org/projects/rubyforapache
|
||||
#
|
||||
# And be sure to use new-style password hashing:
|
||||
# http://dev.mysql.com/doc/refman/5.0/en/old-client.html
|
||||
development:
|
||||
|
@ -10,12 +15,11 @@ development:
|
|||
database: <%= app_name %>_development
|
||||
username: root
|
||||
password:
|
||||
<%= " socket: #{socket}" if socket %>
|
||||
|
||||
# Connect on a TCP socket. If omitted, the adapter will connect on the
|
||||
# domain socket given by socket instead.
|
||||
#host: localhost
|
||||
#port: 3306
|
||||
<% if socket -%>
|
||||
socket: <%= socket %>
|
||||
<% else -%>
|
||||
host: localhost
|
||||
<% end -%>
|
||||
|
||||
# Warning: The database defined as 'test' will be erased and
|
||||
# re-generated from your development database when you run 'rake'.
|
||||
|
@ -25,16 +29,26 @@ test:
|
|||
database: <%= app_name %>_test
|
||||
username: root
|
||||
password:
|
||||
<%= " socket: #{socket}" if socket %>
|
||||
<% if socket -%>
|
||||
socket: <%= socket %>
|
||||
<% else -%>
|
||||
host: localhost
|
||||
<% end -%>
|
||||
|
||||
production:
|
||||
adapter: mysql
|
||||
database: <%= app_name %>_production
|
||||
username: root
|
||||
password:
|
||||
<%= " socket: #{socket}" if socket %>
|
||||
<% if socket -%>
|
||||
socket: <%= socket %>
|
||||
<% else -%>
|
||||
host: localhost
|
||||
<% end -%>
|
||||
|
||||
|
||||
### Example database connections. You can safely delete these. ###
|
||||
|
||||
# PostgreSQL versions 7.4 - 8.1
|
||||
#
|
||||
# Get the C bindings:
|
||||
|
@ -48,8 +62,9 @@ postgresql_example:
|
|||
password:
|
||||
|
||||
# Connect on a TCP socket. Omitted by default since the client uses a
|
||||
# domain socket that doesn't need configuration.
|
||||
#host: remote-database
|
||||
# domain socket that doesn't need configuration. Windows does not have
|
||||
# domain sockets, so uncomment these lines.
|
||||
#host: localhost
|
||||
#port: 5432
|
||||
|
||||
# Schema search path. The server defaults to $user,public
|
||||
|
|
|
@ -11,8 +11,9 @@ class AppGenerator < Rails::Generator::Base
|
|||
super
|
||||
usage if args.empty?
|
||||
@destination_root = args.shift
|
||||
unless RUBY_PLATFORM =~ /mswin32/
|
||||
@socket = MYSQL_SOCKET_LOCATIONS.find { |f| File.exists?(f) }
|
||||
@socket = '/path/to/your/mysql.sock' if @socket.blank?
|
||||
end
|
||||
end
|
||||
|
||||
def manifest
|
||||
|
|
Loading…
Reference in a new issue