Class: ActiveModel::AttributeMethods::ClassMethods::AttributeMethodMatcher

Inherits:
Object
  • Object
show all
Defined in:
lib/active_model/attribute_methods.rb

Overview

:nodoc:

Defined Under Namespace

Classes: AttributeMethodMatch

Instance Attribute Summary collapse

Instance Method Summary collapse

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(options = {})
  @prefix, @suffix = options.fetch(:prefix, ""), options.fetch(:suffix, "")
  @regex = /^(?:#{Regexp.escape(@prefix)})(.*)(?:#{Regexp.escape(@suffix)})$/
  @target = "#{@prefix}attribute#{@suffix}"
  @method_name = "#{prefix}%s#{suffix}"
end

Instance Attribute Details

#prefixObject (readonly)

Returns the value of attribute prefix.



431
432
433
# File 'lib/active_model/attribute_methods.rb', line 431

def prefix
  @prefix
end

#suffixObject (readonly)

Returns the value of attribute suffix.



431
432
433
# File 'lib/active_model/attribute_methods.rb', line 431

def suffix
  @suffix
end

#targetObject (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