Class: ActiveModel::AttributeMethods::ClassMethods::AttributeMethodPattern

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

Overview

:nodoc:

Defined Under Namespace

Classes: AttributeMethod

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(prefix: "", suffix: "", parameters: nil) ⇒ AttributeMethodPattern

Returns a new instance of AttributeMethodPattern.



425
426
427
428
429
430
431
432
# File 'activemodel/lib/active_model/attribute_methods.rb', line 425

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

Instance Attribute Details

#parametersObject (readonly)

Returns the value of attribute parameters



421
422
423
# File 'activemodel/lib/active_model/attribute_methods.rb', line 421

def parameters
  @parameters
end

#prefixObject (readonly)

Returns the value of attribute prefix



421
422
423
# File 'activemodel/lib/active_model/attribute_methods.rb', line 421

def prefix
  @prefix
end

#proxy_targetObject (readonly)

Returns the value of attribute proxy_target



421
422
423
# File 'activemodel/lib/active_model/attribute_methods.rb', line 421

def proxy_target
  @proxy_target
end

#suffixObject (readonly)

Returns the value of attribute suffix



421
422
423
# File 'activemodel/lib/active_model/attribute_methods.rb', line 421

def suffix
  @suffix
end

Instance Method Details

#match(method_name) ⇒ Object



434
435
436
437
438
# File 'activemodel/lib/active_model/attribute_methods.rb', line 434

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

#method_name(attr_name) ⇒ Object



440
441
442
# File 'activemodel/lib/active_model/attribute_methods.rb', line 440

def method_name(attr_name)
  @method_name % attr_name
end