Class: RAMF::FlexObjects::ByteArray

Inherits:
Tempfile
  • Object
show all
Defined in:
lib/ramf/flex_objects/byte_array.rb

Instance Method Summary collapse

Constructor Details

#initialize(content) ⇒ ByteArray

Returns a new instance of ByteArray.



4
5
6
7
8
# File 'lib/ramf/flex_objects/byte_array.rb', line 4

def initialize(content)
  super("RAMFTemp")
  self.write content
  self.rewind
end