Sha256: c9e46cd2f2ddb5e20c988ce4b98420d51a27d47430119680f846a93b0e4fd54e

Contents?: true

Size: 273 Bytes

Versions: 66

Compression:

Stored size: 273 Bytes

Contents

# frozen_string_literal: true

require "active_support/core_ext/integer/time"

module Koi
  module Caching
    # Caching Enabled
    mattr_accessor :enabled
    @@enabled = true

    # Cache Expires in
    mattr_accessor :expires_in
    @@expires_in = 60.minutes
  end
end

Version data entries

66 entries across 66 versions & 1 rubygems

Version Path
katalyst-koi-4.1.1 lib/koi/caching.rb
katalyst-koi-4.1.0 lib/koi/caching.rb
katalyst-koi-4.0.3 lib/koi/caching.rb
katalyst-koi-4.0.2 lib/koi/caching.rb
katalyst-koi-4.0.1 lib/koi/caching.rb
katalyst-koi-4.0.0 lib/koi/caching.rb