class CacheFlow::Configuration

Attributes

default_options[RW]

Public Class Methods

new() click to toggle source

Put all these constants into a configurable setting hash Hour range based on 24 hour clock

# File lib/cache-flow/configuration.rb, line 7
def initialize
  @default_options = {
    time_zone: "Pacific Time (US & Canada)",
    hour_range_start: 1,
    hour_range_end: 4
  }
end