Class: Dcha::Config
Overview
:nodoc:
Instance Attribute Summary collapse
-
#digest ⇒ Object
Returns the value of attribute digest.
-
#store ⇒ Object
Returns the value of attribute store.
Class Method Summary collapse
Instance Method Summary collapse
-
#initialize ⇒ Config
constructor
A new instance of Config.
Constructor Details
Instance Attribute Details
#digest ⇒ Object
Returns the value of attribute digest.
17 18 19 |
# File 'lib/dcha/config.rb', line 17 def digest @digest end |
#store ⇒ Object
Returns the value of attribute store.
17 18 19 |
# File 'lib/dcha/config.rb', line 17 def store @store end |
Class Method Details
.method_missing(name, *args, &block) ⇒ Object
9 10 11 12 |
# File 'lib/dcha/config.rb', line 9 def method_missing(name, *args, &block) return instance.send(name, *args, &block) if instance.respond_to?(name) super end |
.respond_to_missing?(name) ⇒ Boolean
5 6 7 |
# File 'lib/dcha/config.rb', line 5 def respond_to_missing?(name) instance.respond_to_missing?(name) end |