Sha256: c4e7accc737697269a20802943acc871d203b296164c9211571d60fc2c0fa560

Contents?: true

Size: 562 Bytes

Versions: 1

Compression:

Stored size: 562 Bytes

Contents

# Used as component of a rubyrep config file.
# Defines connection parameters to the mysql databases.

RR::Initializer::run do |config|
  config.left = {
    :adapter  => 'mysql2',
    :database => 'rr_left',   
    :username => 'root',   
    :password => '',   
    :host     => 'localhost',
    :port     => 3306,
    :encoding => 'utf8'
  }

  config.right = {
    :adapter  => 'mysql2',
    :database => 'rr_right',   
    :username => 'root',   
    :password => '',   
    :host     => 'localhost',
    :port     => 3306,
    :encoding => 'utf8'
  }

end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
rubyrep-2.0.0 config/mysql_config.rb