class TacScribe::Datastore::Configuration

Contains all the connection configuration required for connectin to a postgresql database. Defaults to localhost with ubuntu presets

Attributes

database[RW]
host[RW]
password[RW]
port[RW]
username[RW]

Public Class Methods

new() click to toggle source
# File lib/tac_scribe/datastore.rb, line 36
def initialize
  @host = 'localhost'
  @port = '5432'
  @database = 'tac_scribe'
  @username = 'tac_scribe'
  @password = 'tac_scribe'
end