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
- #plain? ⇒ Boolean
Constructor Details
#initialize(options = {}) ⇒ AttributeMethodMatcher
Returns a new instance of AttributeMethodMatcher.
393 394 395 396 397 398 |
# File 'lib/active_model/attribute_methods.rb', line 393 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.
389 390 391 |
# File 'lib/active_model/attribute_methods.rb', line 389 def prefix @prefix end |
#suffix ⇒ Object (readonly)
Returns the value of attribute suffix.
389 390 391 |
# File 'lib/active_model/attribute_methods.rb', line 389 def suffix @suffix end |
#target ⇒ Object (readonly)
Returns the value of attribute target.
389 390 391 |
# File 'lib/active_model/attribute_methods.rb', line 389 def target @target end |
Instance Method Details
#match(method_name) ⇒ Object
400 401 402 403 404 |
# File 'lib/active_model/attribute_methods.rb', line 400 def match(method_name) if @regex =~ method_name AttributeMethodMatch.new(target, $1) end end |
#method_name(attr_name) ⇒ Object
406 407 408 |
# File 'lib/active_model/attribute_methods.rb', line 406 def method_name(attr_name) @method_name % attr_name end |
#plain? ⇒ Boolean
410 411 412 |
# File 'lib/active_model/attribute_methods.rb', line 410 def plain? prefix.empty? && suffix.empty? end |