Sha256: 6866c4604bf47fb1808cec942547fe742e54cc9d80436f9262de9540d492cd8e

Contents?: true

Size: 623 Bytes

Versions: 10

Compression:

Stored size: 623 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:
  <<: *mysql

test:
  <<: *mysql

production:
  <<: *mysql

Version data entries

10 entries across 5 versions & 1 rubygems

Version Path
newrelic_rpm-3.6.8.168 test/environments/rails22/config/database.yml
newrelic_rpm-3.6.8.168 test/environments/rails21/config/database.yml
newrelic_rpm-3.6.8.164 test/environments/rails21/config/database.yml
newrelic_rpm-3.6.8.164 test/environments/rails22/config/database.yml
newrelic_rpm-3.6.7.159 test/environments/rails21/config/database.yml
newrelic_rpm-3.6.7.159 test/environments/rails22/config/database.yml
newrelic_rpm-3.6.7.159.beta test/environments/rails22/config/database.yml
newrelic_rpm-3.6.7.159.beta test/environments/rails21/config/database.yml
newrelic_rpm-3.6.7.152 test/environments/rails21/config/database.yml
newrelic_rpm-3.6.7.152 test/environments/rails22/config/database.yml