Sha256: 246e33e18701cb1457a4c5bc24ec9b96de04f41301bf92d505615da44ec15978

Contents?: true

Size: 401 Bytes

Versions: 1

Compression:

Stored size: 401 Bytes

Contents

# Add the mysql2 gem
gem "mysql2" , "~> 0.2.7"

# Redefine our database.yml using the async adapters
run 'rm config/database.yml'
create_file 'config/database.yml' do
<<-FILE
development:
  adapter: em_mysql2
  database: rails_async_development
  username: root
  pool: 250
  timeout: 5000

test:
  adapter: em_mysql2
  database: rails_async_test
  username: root
  pool: 5
  timeout: 5000

FILE
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
prologue-0.6.0 templates/async/lib/mysql2_db.rb