Class: ActiveRecord::XmlSerializer

Inherits:
Object
  • Object
show all
Defined in:
lib/ruboss_on_ruby/active_foo.rb

Overview

Change the xml serializer so that ‘?’s are stripped from attribute names. This makes it possible to serialize methods that end in a question mark, like ‘valid?’ or ‘is_true?’

Defined Under Namespace

Classes: Attribute

Instance Method Summary collapse

Instance Method Details

#add_tag(attribute) ⇒ Object



89
90
91
92
93
94
95
# File 'lib/ruboss_on_ruby/active_foo.rb', line 89

def add_tag(attribute)
  builder.tag!(
    dasherize? ? attribute.display_name.dasherize : attribute.display_name,
    attribute.value.to_s,
    attribute.decorations(!options[:skip_types])
  )
end