Sha256: 7453c8de22cf950b107f5a8ae36f5757a029e6faa4bc295c3b4267fe4ece23dd

Contents?: true

Size: 482 Bytes

Versions: 8

Compression:

Stored size: 482 Bytes

Contents

mysql: &mysql
  adapter: mysql
  socket: <%= (`uname -s` =~ /Linux/ ) ? "" : "/tmp/mysql.sock" %>
  username: root
  host: localhost
  database: <%= db = "#{ENV['RUBY_VERSION']}#{ENV['BRANCH']}"; db.empty? ? "rails_blog" : db %>

sqlite3: &sqlite3
<% if defined?(JRuby) %>
  adapter: jdbcsqlite3
<% else %>
  adapter: sqlite3
<% end %>
  database: db/all.sqlite3
  pool: 5
  timeout: 5000
  host: localhost

development:
  <<: *sqlite3

test:
  <<: *mysql

production:
  <<: *mysql

Version data entries

8 entries across 2 versions & 1 rubygems

Version Path
newrelic_rpm-4.1.0.333 test/environments/rails32/config/database.yml
newrelic_rpm-4.1.0.333 test/environments/rails23/config/database.yml
newrelic_rpm-4.1.0.333 test/environments/rails30/config/database.yml
newrelic_rpm-4.1.0.333 test/environments/rails31/config/database.yml
newrelic_rpm-4.0.0.332 test/environments/rails23/config/database.yml
newrelic_rpm-4.0.0.332 test/environments/rails30/config/database.yml
newrelic_rpm-4.0.0.332 test/environments/rails31/config/database.yml
newrelic_rpm-4.0.0.332 test/environments/rails32/config/database.yml