Sha256: d344b8128dd712c552fcbcdb94c952bd3cc0c51b434257f7c02be1307ac0db92

Contents?: true

Size: 478 Bytes

Versions: 5

Compression:

Stored size: 478 Bytes

Contents

#
# Blogaze
# Copyright (C) 2011-2013 Jack Polgar
#
# Blogaze is released under the BSD 3-clause license.
# @license http://opensource.org/licenses/BSD-3-Clause
#

# The database connection
# set your server, username, password
# and database name below.
Blogaze.database = Sequel.connect(
  :adapter  => 'mysql2',
  :host     => 'localhost',
  :username => '',
  :password => '',
  :database => '',
  :test     => true,
  :encoding => 'utf8',
  :charset => 'utf8_general_ci'
)

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
blogaze-0.2.0 proto/config/database.default.rb
blogaze-0.1.0 proto/config/database.default.rb
blogaze-0.0.3 proto/config/database.default.rb
blogaze-0.0.2 proto/config/database.default.rb
blogaze-0.0.1 proto/config/database.default.rb