public
Description: Your favorite URL-shortening service in all of Ruby land
Homepage: http://rubyurl.com
Clone URL: git://github.com/robbyrussell/rubyurl.git
Search Repo:
Robby Russell (author)
Mon Feb 18 16:27:55 -0800 2008
commit  bd7d666edaa48b47f16b9ea824c9e0bb02f3b31e
tree    e8e42e947d978c1b0d6ffde7225e3bcaef7d5ab0
parent  156c306838e7e50311571c71a06d2fb336f2a005
rubyurl / config / database.yml.example
100644 18 lines (14 sloc) 0.27 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
# PLANET ARGON approved database.yml file
login: &login
  adapter: postgresql
  host: localhost
  port: 5432
 
development:
  database: rubyurl_development
  <<: *login
 
test:
  database: rubyurl_test
  <<: *login
 
production:
  database: rubyurl_production
  <<: *login