Sha256: 70811da287ac0b9db08bbfec8c4802cfeb1b17fe66fc952fc44282e9533445b0
Contents?: true
Size: 625 Bytes
Versions: 25
Compression:
Stored size: 625 Bytes
Contents
# Shared properties for mysql db mysql: &mysql adapter: mysql socket: <%= (`uname -s` =~ /Linux/ ) ? "" :"/tmp/mysql.sock" %> username: root host: localhost database: rails_blog # Shared properties for postgres. This won't work with our schema but # Does work with agent tests sqlite3: &sqlite3 <% if defined?(JRuby) %> adapter: jdbcsqlite3 <% else %> adapter: sqlite3 <% end %> database: db/all.sqlite3 pool: 5 timeout: 5000 host: localhost # SQLite version 3.x # gem install sqlite3-ruby (not necessary on OS X Leopard) development: <<: *sqlite3 test: <<: *mysql production: <<: *mysql
Version data entries
25 entries across 5 versions & 1 rubygems