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.



395
396
397
398
399
400
# File 'lib/active_model/attribute_methods.rb', line 395

def initialize(options = {})
  @prefix, @suffix = options.fetch(:prefix, ''), options.fetch(:suffix, '')
  @regex = /^(?:#{Regexp.escape(@prefix)})(.*)(?:#{Regexp.escape(@suffix)})$/
  @method_missing_target = "#{@prefix}attribute#{@suffix}"
  @method_name = "#{prefix}%s#{suffix}"
end

Instance Attribute Details

#method_missing_targetObject (readonly)

Returns the value of attribute method_missing_target.



391
392
393
# File 'lib/active_model/attribute_methods.rb', line 391

def method_missing_target
  @method_missing_target
end

#prefixObject (readonly)

Returns the value of attribute prefix.



391
392
393
# File 'lib/active_model/attribute_methods.rb', line 391

def prefix
  @prefix
end

#suffixObject (readonly)

Returns the value of attribute suffix.



391
392
393
# File 'lib/active_model/attribute_methods.rb', line 391

def suffix
  @suffix
end

Instance Method Details

#match(method_name) ⇒ Object



402
403
404
405
406
# File 'lib/active_model/attribute_methods.rb', line 402

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

#method_name(attr_name) ⇒ Object



408
409
410
# File 'lib/active_model/attribute_methods.rb', line 408

def method_name(attr_name)
  @method_name % attr_name
end

#plain?Boolean

Returns:

  • (Boolean)


412
413
414
# File 'lib/active_model/attribute_methods.rb', line 412

def plain?
  prefix.empty? && suffix.empty?
end