Module: ROXML::ClassMethods::Accessors

Defined in:
lib/roxml.rb

Instance Method Summary collapse

Instance Method Details

#roxml_attrsObject

Returns array of internal reference objects, such as attributes and composed XML objects



534
535
536
537
# File 'lib/roxml.rb', line 534

def roxml_attrs
  @roxml_attrs ||= []
  (@roxml_attrs + (superclass.respond_to?(:roxml_attrs) ? superclass.roxml_attrs : [])).freeze
end

#roxml_namespaceObject

:nodoc:



524
525
526
527
528
529
530
# File 'lib/roxml.rb', line 524

def roxml_namespace # :nodoc:
  if defined? @roxml_namespace
    @roxml_namespace
  elsif superclass.respond_to?(:roxml_namespace)
    superclass.roxml_namespace
  end
end

#roxml_tag_nameObject

:nodoc:



516
517
518
519
520
521
522
# File 'lib/roxml.rb', line 516

def roxml_tag_name # :nodoc:
  if defined? @roxml_tag_name
    @roxml_tag_name
  elsif superclass.respond_to?(:roxml_tag_name)
    superclass.roxml_tag_name
  end
end

#tag_nameObject

Returns the tag name (also known as xml_name) of the class. If no tag name is set with xml_name method, returns default class name in lowercase.

If xml_convention is set, it is called with an underscored version of the class name. This is because active support’s inflector generally expects an underscored version, and several operations (e.g. camelcase(:lower), dasherize) do not work without one.



508
509
510
511
512
513
514
# File 'lib/roxml.rb', line 508

def tag_name
  return roxml_tag_name if roxml_tag_name

  if tag_name = name.split('::').last
    roxml_naming_convention ? roxml_naming_convention.call(tag_name.underscore) : tag_name.downcase
  end
end