Class: ActiveModel::AttributeMethods::ClassMethods::AttributeMethodPattern
- Inherits:
-
Object
- Object
- ActiveModel::AttributeMethods::ClassMethods::AttributeMethodPattern
- Defined in:
- 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.
476 477 478 479 480 481 482 483 |
# File 'lib/active_model/attribute_methods.rb', line 476 def initialize(prefix: "", suffix: "", parameters: nil) @prefix = prefix @suffix = suffix @parameters = parameters.nil? ? "..." : 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.
472 473 474 |
# File 'lib/active_model/attribute_methods.rb', line 472 def parameters @parameters end |
#prefix ⇒ Object (readonly)
Returns the value of attribute prefix.
472 473 474 |
# File 'lib/active_model/attribute_methods.rb', line 472 def prefix @prefix end |
#proxy_target ⇒ Object (readonly)
Returns the value of attribute proxy_target.
472 473 474 |
# File 'lib/active_model/attribute_methods.rb', line 472 def proxy_target @proxy_target end |
#suffix ⇒ Object (readonly)
Returns the value of attribute suffix.
472 473 474 |
# File 'lib/active_model/attribute_methods.rb', line 472 def suffix @suffix end |
Instance Method Details
#match(method_name) ⇒ Object
485 486 487 488 489 |
# File 'lib/active_model/attribute_methods.rb', line 485 def match(method_name) if @regex =~ method_name AttributeMethod.new(proxy_target, $1) end end |
#method_name(attr_name) ⇒ Object
491 492 493 |
# File 'lib/active_model/attribute_methods.rb', line 491 def method_name(attr_name) @method_name % attr_name end |