public
Description: Test application for testing the rails-authorization-plugin
Homepage: http://code.google.com/p/rails-authorization-plugin/
Clone URL: git://github.com/grempe/rails-authorization-plugin-test.git
100755 36 lines (33 sloc) 0.992 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
# 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:
# 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:
  adapter: sqlite3
  database: db/object_test_development.sqlite3
  #username: devel
  #password: devel
  #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: sqlite3
  database: db/object_test_test.sqlite3
  #username: devel
  #password: devel
  #host: localhost
 
#production:
# adapter: mysql
# database: object_test_production
# username: root
# password:
# host: localhost