Sha256: c19281d15802c4b283a7897ae85e70b05e411468dd4943ceb6b940d34e1586d1

Contents?: true

Size: 483 Bytes

Versions: 8

Compression:

Stored size: 483 Bytes

Contents

mysql: &mysql
  adapter: mysql2
  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/rails50/config/database.yml
newrelic_rpm-4.1.0.333 test/environments/rails40/config/database.yml
newrelic_rpm-4.1.0.333 test/environments/rails41/config/database.yml
newrelic_rpm-4.1.0.333 test/environments/rails42/config/database.yml
newrelic_rpm-4.0.0.332 test/environments/rails40/config/database.yml
newrelic_rpm-4.0.0.332 test/environments/rails41/config/database.yml
newrelic_rpm-4.0.0.332 test/environments/rails42/config/database.yml
newrelic_rpm-4.0.0.332 test/environments/rails50/config/database.yml