class JunglePath::DBAccess::IO::Config
Attributes
extensions[RW]
host[RW]
name[RW]
options[RW]
password[RW]
port[RW]
type[RW]
user_name[RW]
Public Class Methods
new(name: nil, type: nil, user_name: nil, password: nil, host: nil, extensions: [], port: nil, options: nil)
click to toggle source
# File lib/jungle_path/db_access/io/config.rb, line 6 def initialize name: nil, type: nil, user_name: nil, password: nil, host: nil, extensions: [], port: nil, options: nil @name = name @type = type @user_name = user_name @password = password @host = host @extensions = extensions @port = port @options = options end