Class: ActionView::OutputBuffer

Inherits:
ActiveSupport::SafeBuffer show all
Defined in:
actionview/lib/action_view/buffers.rb

Overview

:nodoc:

Constant Summary

Constants inherited from ActiveSupport::SafeBuffer

ActiveSupport::SafeBuffer::UNSAFE_STRING_METHODS

Constants inherited from String

String::BLANK_RE

Instance Method Summary collapse

Methods inherited from ActiveSupport::SafeBuffer

#%, #+, #[], #clone_empty, #concat, #encode_with, #html_safe?, #initialize_copy, #to_param, #to_s

Methods inherited from String

#acts_like_string?, #as_json, #at, #blank?, #camelize, #classify, #constantize, #dasherize, #deconstantize, #demodulize, #exclude?, #first, #foreign_key, #from, #html_safe, #humanize, #in_time_zone, #indent, #indent!, #inquiry, #is_utf8?, #last, #mb_chars, #parameterize, #pluralize, #remove, #remove!, #safe_constantize, #singularize, #squish, #squish!, #strip_heredoc, #tableize, #titleize, #to, #to_date, #to_datetime, #to_time, #truncate, #underscore

Constructor Details

#initializeOutputBuffer

Returns a new instance of OutputBuffer.



5
6
7
8
# File 'actionview/lib/action_view/buffers.rb', line 5

def initialize(*)
  super
  encode!
end

Instance Method Details

#<<(value) ⇒ Object Also known as: append=



10
11
12
13
# File 'actionview/lib/action_view/buffers.rb', line 10

def <<(value)
  return self if value.nil?
  super(value.to_s)
end

#safe_concat(value) ⇒ Object Also known as: safe_append=



16
17
18
19
# File 'actionview/lib/action_view/buffers.rb', line 16

def safe_concat(value)
  return self if value.nil?
  super(value.to_s)
end