Module: Caprese::Record::Aliasing

Extended by:
ActiveSupport::Concern
Included in:
Caprese::Record
Defined in:
lib/caprese/record/aliasing.rb

Defined Under Namespace

Modules: ClassMethods

Instance Method Summary collapse

Instance Method Details

#caprese_is_attribute?(attribute_name) ⇒ Boolean

Note:

This exists so there is a method by which to state that a non-column attribute should have an error source pointer like ‘/data/attributes/` instead of `/data/relationships/`

Provides an intermediary helper method on records that defines non-column attributes for records

Returns:

  • (Boolean)


11
12
13
# File 'lib/caprese/record/aliasing.rb', line 11

def caprese_is_attribute?(attribute_name)
  false
end

#caprese_is_field?(field) ⇒ Boolean

Checks that any field provided is either an attribute on the record, or an aliased field, or none

Parameters:

  • field (String, Symbol)

    the field to check for on this record

Returns:

  • (Boolean)

    whether or not the field is on the record



19
20
21
# File 'lib/caprese/record/aliasing.rb', line 19

def caprese_is_field?(field)
  respond_to?(field = field.to_sym) || caprese_is_attribute?(field) || self.class.caprese_field_aliases[field]
end