class GitHub::KV::Config

Attributes

encapsulated_errors[RW]
table_name[RW]
use_local_time[RW]

Public Class Methods

new() click to toggle source
# File lib/github/kv/config.rb, line 6
def initialize
  @table_name = 'key_values'
  @encapsulated_errors = [SystemCallError]
  @use_local_time = false
end