Class: OpenURI::Buffer
Overview
:nodoc: all
Instance Attribute Summary collapse
-
#size ⇒ Object
readonly
Returns the value of attribute size.
Instance Method Summary collapse
- #<<(str) ⇒ Object
-
#initialize ⇒ Buffer
constructor
A new instance of Buffer.
- #io ⇒ Object
Constructor Details
#initialize ⇒ Buffer
Returns a new instance of Buffer.
180 181 182 183 |
# File 'opal/stdlib/open-uri.rb', line 180 def initialize @io = StringIO.new @size = 0 end |
Instance Attribute Details
#size ⇒ Object (readonly)
Returns the value of attribute size.
184 185 186 |
# File 'opal/stdlib/open-uri.rb', line 184 def size @size end |
Instance Method Details
#<<(str) ⇒ Object
[View source]
186 187 188 189 |
# File 'opal/stdlib/open-uri.rb', line 186 def <<(str) @io << str @size += str.length end |
#io ⇒ Object
[View source]
191 192 193 194 |
# File 'opal/stdlib/open-uri.rb', line 191 def io Meta.init @io unless Meta === @io @io end |