Module: Rack::Bug::Options
- Included in:
- Rack::Bug
- Defined in:
- lib/rack/bug/options.rb
Instance Method Summary collapse
-
#options ⇒ Object
The underlying options Hash.
-
#options=(hash = {}) ⇒ Object
Set multiple options.
-
#set(option, value = self, &block) ⇒ Object
Set an option.
Instance Method Details
#options ⇒ Object
The underlying options Hash. During initialization (or outside of a request), this is a default values Hash. During a request, this is the Rack environment Hash. The default values Hash is merged in underneath the Rack environment before each request is processed.
23 24 25 |
# File 'lib/rack/bug/options.rb', line 23 def @env || @default_options end |
#options=(hash = {}) ⇒ Object
Set multiple options.
28 29 30 |
# File 'lib/rack/bug/options.rb', line 28 def (hash={}) hash.each { |key,value| write_option(key, value) } end |
#set(option, value = self, &block) ⇒ Object
Set an option. When option
is a Symbol, it is set in the Rack Environment as “rack-cache.option”. When option
is a String, it exactly as specified. The option
argument may also be a Hash in which case each key/value pair is merged into the environment as if the #set method were called on each.
37 38 39 40 41 42 43 44 45 |
# File 'lib/rack/bug/options.rb', line 37 def set(option, value=self, &block) if block_given? write_option option, block elsif value == self self. = option.to_hash else write_option option, value end end |