class Byebug::Printers::Xml

Public Instance Methods

print(path, args = {}) click to toggle source
print_collection(path, collection, &block) click to toggle source
print_instance_variables(object) click to toggle source
print_variables(variables, global_kind) click to toggle source

Private Instance Methods

contents_files() click to toggle source
Calls superclass method
# File lib/byebug/printers/xml.rb, line 91
def contents_files
  [File.expand_path(File.join("..", "texts", "xml.yml"), __FILE__)] + super
end
print_confirmation(path, args) click to toggle source
print_content(xml, path, args) click to toggle source
print_debug(path, args) click to toggle source
print_error(path, args) click to toggle source
print_general(path, args) click to toggle source
print_message(path, args) click to toggle source
translated_attributes(attributes, args) click to toggle source
# File lib/byebug/printers/xml.rb, line 84
def translated_attributes(attributes, args)
  attributes.inject({}) do |hash, (key, value)|
    hash[key] = translate(value, args)
    hash
  end
end