Class: Chef::StreamingCookbookUploader::StringPart

Inherits:
Object
  • Object
show all
Defined in:
lib/chef/streaming_cookbook_uploader.rb

Instance Method Summary collapse

Constructor Details

#initialize(str) ⇒ StringPart

Returns a new instance of StringPart.



125
126
127
# File 'lib/chef/streaming_cookbook_uploader.rb', line 125

def initialize(str)
  @str = str
end

Instance Method Details

#read(offset, how_much) ⇒ Object

read the specified amount from the string startiung at the offset



134
135
136
# File 'lib/chef/streaming_cookbook_uploader.rb', line 134

def read(offset, how_much)
  @str[offset, how_much]
end

#sizeObject



129
130
131
# File 'lib/chef/streaming_cookbook_uploader.rb', line 129

def size
  @str.length
end