class QuickStore::Configuration

The Configuration class is used internally by QuickStore to create a singleton configuration. The key_separator defines the character which can be used to access nested store items (default is “/”). The file_path determines where the YAML file is stored.

Attributes

file_path[RW]
key_separator[RW]

Public Class Methods

new() click to toggle source
# File lib/quick_store/configuration.rb, line 10
def initialize
  @key_separator = '/'
end