Class: NewRelic::UrlRule
- Inherits:
-
Object
- Object
- NewRelic::UrlRule
- Defined in:
- lib/new_relic/url_rule.rb
Overview
Represents url mapping rules stored on the server. These rules should be applied to URLs which are not normalized into controller class/action by Rails routes. Insantiated strictly by Marshal.
Defined Under Namespace
Classes: RuleSet
Instance Attribute Summary collapse
-
#eval_order ⇒ Object
readonly
Returns the value of attribute eval_order.
-
#match_expression ⇒ Object
readonly
Returns the value of attribute match_expression.
-
#replacement ⇒ Object
readonly
Returns the value of attribute replacement.
-
#terminate_chain ⇒ Object
readonly
Returns the value of attribute terminate_chain.
Instance Method Summary collapse
Instance Attribute Details
#eval_order ⇒ Object (readonly)
Returns the value of attribute eval_order.
5 6 7 |
# File 'lib/new_relic/url_rule.rb', line 5 def eval_order @eval_order end |
#match_expression ⇒ Object (readonly)
Returns the value of attribute match_expression.
5 6 7 |
# File 'lib/new_relic/url_rule.rb', line 5 def match_expression @match_expression end |
#replacement ⇒ Object (readonly)
Returns the value of attribute replacement.
5 6 7 |
# File 'lib/new_relic/url_rule.rb', line 5 def replacement @replacement end |
#terminate_chain ⇒ Object (readonly)
Returns the value of attribute terminate_chain.
5 6 7 |
# File 'lib/new_relic/url_rule.rb', line 5 def terminate_chain @terminate_chain end |
Instance Method Details
#apply(url) ⇒ Object
7 8 9 |
# File 'lib/new_relic/url_rule.rb', line 7 def apply url return nil end |