Method: Configural::App#cache

Defined in:
lib/configural/app.rb

#cacheObject



44
45
46
47
48
49
50
51
52
# File 'lib/configural/app.rb', line 44

def cache
  @cache ||=
    begin
      unless @cache_path
        raise 'you must set cache_path or path first'
      end
      Configural::Cache.new(self)
    end
end