Skip to content

Commit

Permalink
Merge pull request #1106 from vatrai/user_instruct
Browse files Browse the repository at this point in the history
instruct user to install using Gem file in database.yml template
  • Loading branch information
josevalim committed May 17, 2011
2 parents f1e1e76 + 0e1e831 commit 442ed8c
Show file tree
Hide file tree
Showing 6 changed files with 22 additions and 2 deletions.
Expand Up @@ -2,7 +2,10 @@
#
# Get the bindings:
# gem install ruby-frontbase

#
# Configure Using Gemfile
# gem 'ruby-frontbase'
#
development:
adapter: frontbase
host: localhost
Expand Down
Expand Up @@ -28,6 +28,9 @@
# On Windows:
# Issue the command: gem install ibm_db
#
# Configure Using Gemfile
# gem 'ibm_db'
#
# For more details on the installation and the connection parameters below,
# please refer to the latest documents at http://rubyforge.org/docman/?group_id=2361

Expand Down
Expand Up @@ -3,6 +3,9 @@
# Install the MySQL driver:
# gem install activerecord-jdbcmysql-adapter
#
# Configure Using Gemfile
# gem 'activerecord-jdbcmysql-adapter'
#
# And be sure to use new-style password hashing:
# http://dev.mysql.com/doc/refman/5.0/en/old-client.html
development:
Expand Down
Expand Up @@ -8,6 +8,10 @@
# gem install pg
# Choose the win32 build.
# Install PostgreSQL and put its /bin directory on your path.
#
# Configure Using Gemfile
# gem 'activerecord-jdbcpostgresql-adapter'

development:
adapter: jdbcpostgresql
encoding: unicode
Expand Down
@@ -1,6 +1,9 @@
# SQLite version 3.x
# gem 'activerecord-jdbcsqlite3-adapter'

#
# Configure Using Gemfile
# gem 'activerecord-jdbcsqlite3-adapter'
#
development:
adapter: jdbcsqlite3
database: db/development.sqlite3
Expand Down
Expand Up @@ -8,6 +8,10 @@
# gem install pg
# Choose the win32 build.
# Install PostgreSQL and put its /bin directory on your path.
#
# Configure Using Gemfile
# gem 'pg'
#
development:
adapter: postgresql
encoding: unicode
Expand Down

0 comments on commit 442ed8c

Please sign in to comment.