Class: Firebug::Configuration
- Inherits:
-
Object
- Object
- Firebug::Configuration
- Defined in:
- lib/firebug/configuration.rb
Overview
A configuration object.
Instance Attribute Summary collapse
-
#key ⇒ String
the encryption key used to encrypt and decrypt cookies.
-
#match_ip_address ⇒ Boolean
use the remote ip address in addition to the session ID.
-
#match_user_agent ⇒ Boolean
use the user-agent in addition to the session ID.
-
#table_name ⇒ String
the name of the sessions table.
-
#truncate_user_agent ⇒ Boolean
truncate the user-agent to 120 characters.
Instance Attribute Details
#key ⇒ String
the encryption key used to encrypt and decrypt cookies.
11 12 13 |
# File 'lib/firebug/configuration.rb', line 11 def key @key end |
#match_ip_address ⇒ Boolean
use the remote ip address in addition to the session ID.
11 12 13 |
# File 'lib/firebug/configuration.rb', line 11 def match_ip_address @match_ip_address end |
#match_user_agent ⇒ Boolean
use the user-agent in addition to the session ID.
11 12 13 |
# File 'lib/firebug/configuration.rb', line 11 def match_user_agent @match_user_agent end |
#table_name ⇒ String
the name of the sessions table.
11 12 13 |
# File 'lib/firebug/configuration.rb', line 11 def table_name @table_name end |
#truncate_user_agent ⇒ Boolean
truncate the user-agent to 120 characters.
11 12 13 |
# File 'lib/firebug/configuration.rb', line 11 def truncate_user_agent @truncate_user_agent end |