Class: ActiveModel::AttributeMethods::ClassMethods::AttributeMethodMatcher
- Inherits:
-
Object
- Object
- ActiveModel::AttributeMethods::ClassMethods::AttributeMethodMatcher
- Defined in:
- lib/active_model/attribute_methods.rb
Overview
:nodoc:
Defined Under Namespace
Classes: AttributeMethodMatch
Instance Attribute Summary collapse
-
#prefix ⇒ Object
readonly
Returns the value of attribute prefix.
-
#suffix ⇒ Object
readonly
Returns the value of attribute suffix.
-
#target ⇒ Object
readonly
Returns the value of attribute target.
Instance Method Summary collapse
-
#initialize(options = {}) ⇒ AttributeMethodMatcher
constructor
A new instance of AttributeMethodMatcher.
- #match(method_name) ⇒ Object
- #method_name(attr_name) ⇒ Object
Constructor Details
#initialize(options = {}) ⇒ AttributeMethodMatcher
Returns a new instance of AttributeMethodMatcher.
435 436 437 438 439 440 |
# File 'lib/active_model/attribute_methods.rb', line 435 def initialize( = {}) @prefix, @suffix = .fetch(:prefix, ""), .fetch(:suffix, "") @regex = /^(?:#{Regexp.escape(@prefix)})(.*)(?:#{Regexp.escape(@suffix)})$/ @target = "#{@prefix}attribute#{@suffix}" @method_name = "#{prefix}%s#{suffix}" end |
Instance Attribute Details
#prefix ⇒ Object (readonly)
Returns the value of attribute prefix.
431 432 433 |
# File 'lib/active_model/attribute_methods.rb', line 431 def prefix @prefix end |
#suffix ⇒ Object (readonly)
Returns the value of attribute suffix.
431 432 433 |
# File 'lib/active_model/attribute_methods.rb', line 431 def suffix @suffix end |
#target ⇒ Object (readonly)
Returns the value of attribute target.
431 432 433 |
# File 'lib/active_model/attribute_methods.rb', line 431 def target @target end |
Instance Method Details
#match(method_name) ⇒ Object
442 443 444 445 446 |
# File 'lib/active_model/attribute_methods.rb', line 442 def match(method_name) if @regex =~ method_name AttributeMethodMatch.new(target, $1) end end |
#method_name(attr_name) ⇒ Object
448 449 450 |
# File 'lib/active_model/attribute_methods.rb', line 448 def method_name(attr_name) @method_name % attr_name end |