Class: RestClient::Payload::Base

Inherits:
Object
  • Object
show all
Defined in:
lib/restclient/components.rb

Instance Method Summary collapse

Instance Method Details

#each(&block) ⇒ Object



161
162
163
# File 'lib/restclient/components.rb', line 161

def each(&block)
  @stream.each(&block)
end

#gets(*args) ⇒ Object



157
158
159
# File 'lib/restclient/components.rb', line 157

def gets(*args)
  @stream.gets(*args)
end

#rewind(*args) ⇒ Object



153
154
155
# File 'lib/restclient/components.rb', line 153

def rewind(*args)
  @stream.rewind(*args)
end