Class: ActiveModel::AttributeMethods::ClassMethods::AttributeMethodMatcher
- Inherits:
-
Object
- Object
- ActiveModel::AttributeMethods::ClassMethods::AttributeMethodMatcher
- Defined in:
- activemodel/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.
390 391 392 393 394 395 |
# File 'activemodel/lib/active_model/attribute_methods.rb', line 390 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
386 387 388 |
# File 'activemodel/lib/active_model/attribute_methods.rb', line 386 def prefix @prefix end |
#suffix ⇒ Object (readonly)
Returns the value of attribute suffix
386 387 388 |
# File 'activemodel/lib/active_model/attribute_methods.rb', line 386 def suffix @suffix end |
#target ⇒ Object (readonly)
Returns the value of attribute target
386 387 388 |
# File 'activemodel/lib/active_model/attribute_methods.rb', line 386 def target @target end |
Instance Method Details
#match(method_name) ⇒ Object
397 398 399 400 401 |
# File 'activemodel/lib/active_model/attribute_methods.rb', line 397 def match(method_name) if @regex =~ method_name AttributeMethodMatch.new(target, $1) end end |
#method_name(attr_name) ⇒ Object
403 404 405 |
# File 'activemodel/lib/active_model/attribute_methods.rb', line 403 def method_name(attr_name) @method_name % attr_name end |