Class AppConfig::Storage::Base
In: lib/app_config/storage/base.rb
Parent: Object

Methods

new   to_hash  

Public Class methods

[Source]

# File lib/app_config/storage/base.rb, line 5
      def initialize(options)
        @options = options
      end

Public Instance methods

[Source]

# File lib/app_config/storage/base.rb, line 9
      def to_hash
        Hashish.new(@data.to_hash)
      end

[Validate]