Parent

Class Index [+]

Quicksearch

ActiveSupport::SafeBuffer

Public Instance Methods

+(other) click to toggle source
    # File lib/active_support/core_ext/string/output_safety.rb, line 79
79:     def +(other)
80:       dup.concat(other)
81:     end
<<(value) click to toggle source
Alias for: concat
concat(value) click to toggle source
    # File lib/active_support/core_ext/string/output_safety.rb, line 70
70:     def concat(value)
71:       if value.html_safe?
72:         super(value)
73:       else
74:         super(ERB::Util.h(value))
75:       end
76:     end
Also aliased as: safe_concat, <<
html_safe() click to toggle source
    # File lib/active_support/core_ext/string/output_safety.rb, line 87
87:     def html_safe
88:       self
89:     end
html_safe?() click to toggle source
    # File lib/active_support/core_ext/string/output_safety.rb, line 83
83:     def html_safe?
84:       true
85:     end
safe_concat(value) click to toggle source
Alias for: concat
to_s() click to toggle source
    # File lib/active_support/core_ext/string/output_safety.rb, line 91
91:     def to_s
92:       self
93:     end
to_yaml(*args) click to toggle source
    # File lib/active_support/core_ext/string/output_safety.rb, line 95
95:     def to_yaml(*args)
96:       to_str.to_yaml(*args)
97:     end

Disabled; run with --debug to generate this.

[Validate]

Generated with the Darkfish Rdoc Generator 1.1.6.