Class: Cash::Config::Config
- Inherits:
-
Object
- Object
- Cash::Config::Config
- Defined in:
- lib/cash/config.rb
Instance Attribute Summary collapse
-
#active_record ⇒ Object
readonly
Returns the value of attribute active_record.
-
#options ⇒ Object
readonly
Returns the value of attribute options.
Instance Method Summary collapse
- #indices ⇒ Object
- #inherit(active_record) ⇒ Object
-
#initialize(active_record, options = {}) ⇒ Config
constructor
A new instance of Config.
- #repository ⇒ Object
- #ttl ⇒ Object
- #version ⇒ Object
Constructor Details
#initialize(active_record, options = {}) ⇒ Config
Returns a new instance of Config.
49 50 51 |
# File 'lib/cash/config.rb', line 49 def initialize(active_record, = {}) @active_record, = active_record, end |
Instance Attribute Details
#active_record ⇒ Object (readonly)
Returns the value of attribute active_record.
47 48 49 |
# File 'lib/cash/config.rb', line 47 def active_record @active_record end |
#options ⇒ Object (readonly)
Returns the value of attribute options.
47 48 49 |
# File 'lib/cash/config.rb', line 47 def end |
Instance Method Details
#indices ⇒ Object
65 66 67 |
# File 'lib/cash/config.rb', line 65 def indices @indices ||= active_record == ActiveRecord::Base ? [] : [Index.new(self, active_record, active_record.primary_key)] end |
#inherit(active_record) ⇒ Object
69 70 71 |
# File 'lib/cash/config.rb', line 69 def inherit(active_record) Cash::Config.create(active_record, , indices) end |
#repository ⇒ Object
53 54 55 |
# File 'lib/cash/config.rb', line 53 def repository [:repository] end |
#ttl ⇒ Object
57 58 59 |
# File 'lib/cash/config.rb', line 57 def ttl @ttl ||= [:ttl] || repository.default_ttl || 1.day end |
#version ⇒ Object
61 62 63 |
# File 'lib/cash/config.rb', line 61 def version [:version] || 1 end |