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(prefix: "", suffix: "", parameters: nil) ⇒ AttributeMethodMatcher

Returns a new instance of AttributeMethodMatcher.



422
423
424
425
426
427
428
429
# File 'lib/active_model/attribute_methods.rb', line 422

def initialize(prefix: "", suffix: "", parameters: nil)
  @prefix = prefix
  @suffix = suffix
  @parameters = parameters.nil? ? FORWARD_PARAMETERS : parameters
  @regex = /^(?:#{Regexp.escape(@prefix)})(.*)(?:#{Regexp.escape(@suffix)})$/
  @target = "#{@prefix}attribute#{@suffix}"
  @method_name = "#{prefix}%s#{suffix}"
end

Instance Attribute Details

#parametersObject (readonly)

Returns the value of attribute parameters.



418
419
420
# File 'lib/active_model/attribute_methods.rb', line 418

def parameters
  @parameters
end

#prefixObject (readonly)

Returns the value of attribute prefix.



418
419
420
# File 'lib/active_model/attribute_methods.rb', line 418

def prefix
  @prefix
end

#suffixObject (readonly)

Returns the value of attribute suffix.



418
419
420
# File 'lib/active_model/attribute_methods.rb', line 418

def suffix
  @suffix
end

#targetObject (readonly)

Returns the value of attribute target.



418
419
420
# File 'lib/active_model/attribute_methods.rb', line 418

def target
  @target
end

Instance Method Details

#match(method_name) ⇒ Object



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

def match(method_name)
  if @regex =~ method_name
    AttributeMethodMatch.new(target, $1)
  end
end

#method_name(attr_name) ⇒ Object



437
438
439
# File 'lib/active_model/attribute_methods.rb', line 437

def method_name(attr_name)
  @method_name % attr_name
end