Class: ActiveModel::AttributeMethods::ClassMethods::AttributeMethodPattern
- Inherits:
-
Object
- Object
- ActiveModel::AttributeMethods::ClassMethods::AttributeMethodPattern
- Defined in:
- activemodel/lib/active_model/attribute_methods.rb
Overview
:nodoc:
Defined Under Namespace
Classes: AttributeMethod
Instance Attribute Summary collapse
-
#parameters ⇒ Object
readonly
Returns the value of attribute parameters.
-
#prefix ⇒ Object
readonly
Returns the value of attribute prefix.
-
#proxy_target ⇒ Object
readonly
Returns the value of attribute proxy_target.
-
#suffix ⇒ Object
readonly
Returns the value of attribute suffix.
Instance Method Summary collapse
-
#initialize(prefix: "", suffix: "", parameters: nil) ⇒ AttributeMethodPattern
constructor
A new instance of AttributeMethodPattern.
- #match(method_name) ⇒ Object
- #method_name(attr_name) ⇒ Object
Constructor Details
#initialize(prefix: "", suffix: "", parameters: nil) ⇒ AttributeMethodPattern
Returns a new instance of AttributeMethodPattern.
425 426 427 428 429 430 431 432 |
# File 'activemodel/lib/active_model/attribute_methods.rb', line 425 def initialize(prefix: "", suffix: "", parameters: nil) @prefix = prefix @suffix = suffix @parameters = parameters.nil? ? FORWARD_PARAMETERS : parameters @regex = /\A(?:#{Regexp.escape(@prefix)})(.*)(?:#{Regexp.escape(@suffix)})\z/ @proxy_target = "#{@prefix}attribute#{@suffix}" @method_name = "#{prefix}%s#{suffix}" end |
Instance Attribute Details
#parameters ⇒ Object (readonly)
Returns the value of attribute parameters
421 422 423 |
# File 'activemodel/lib/active_model/attribute_methods.rb', line 421 def parameters @parameters end |
#prefix ⇒ Object (readonly)
Returns the value of attribute prefix
421 422 423 |
# File 'activemodel/lib/active_model/attribute_methods.rb', line 421 def prefix @prefix end |
#proxy_target ⇒ Object (readonly)
Returns the value of attribute proxy_target
421 422 423 |
# File 'activemodel/lib/active_model/attribute_methods.rb', line 421 def proxy_target @proxy_target end |
#suffix ⇒ Object (readonly)
Returns the value of attribute suffix
421 422 423 |
# File 'activemodel/lib/active_model/attribute_methods.rb', line 421 def suffix @suffix end |
Instance Method Details
#match(method_name) ⇒ Object
434 435 436 437 438 |
# File 'activemodel/lib/active_model/attribute_methods.rb', line 434 def match(method_name) if @regex =~ method_name AttributeMethod.new(proxy_target, $1) end end |
#method_name(attr_name) ⇒ Object
440 441 442 |
# File 'activemodel/lib/active_model/attribute_methods.rb', line 440 def method_name(attr_name) @method_name % attr_name end |