Sha256: dcb9b9d05b7eae4a145973fa68c316df4d6da9288406d9922097728b891374cd

Contents?: true

Size: 561 Bytes

Versions: 6

Compression:

Stored size: 561 Bytes

Contents

sqlite3:
  database: ":memory:"
  adapter: sqlite3
  timeout: 500

mysql: &mysql
  adapter: mysql
  database: will_paginate
  username: root
  encoding: utf8
<% if File.exist?("/var/run/mysql5/mysqld.sock") %>
  host: localhost
  socket: /var/run/mysql5/mysqld.sock
<% elsif File.exist? "/tmp/mysql.sock" %>
  host: localhost
  socket: /tmp/mysql.sock
<% else %>
  host: 127.0.0.1
<% end %>

mysql2:
  <<: *mysql
  adapter: mysql2

postgres:
  adapter: postgresql
  database: will_paginate
  username: <%= "postgres" if ENV["TRAVIS"] %>
  min_messages: warning

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
will_paginate-3.3.0 spec/database.yml
will_paginate-3.2.1 spec/database.yml
will_paginate-3.2.0 spec/database.yml
will_paginate-3.1.8 spec/database.yml
will_paginate-3.1.7 spec/database.yml
will_paginate-3.1.6 spec/database.yml