Parent

Origami::Dictionary

Public Instance Methods

to_obfuscated_str() click to toggle source
# File lib/origami/obfuscation.rb, line 117
def to_obfuscated_str
  content = TOKENS.first + Obfuscator.junk_spaces
  self.each_pair { |key, value|
    content << Obfuscator.junk_spaces + 
      key.to_obfuscated_str + Obfuscator.junk_spaces + 
      value.to_obfuscated_str + Obfuscator.junk_spaces
  }

  content << TOKENS.last
  super(content)
end

[Validate]

Generated with the Darkfish Rdoc Generator 2.