class TingYun::Http::AbstractRequest

Constants

ERROR_MESSAGE

Public Instance Methods

[]() click to toggle source
# File lib/ting_yun/http/abstract_request.rb, line 8
def []
  raise NotImplementedError, ERROR_MESSAGE + ':[] method'
end
[]=() click to toggle source
# File lib/ting_yun/http/abstract_request.rb, line 12
def []=
  raise NotImplementedError, ERROR_MESSAGE + ':[]= method'
end
from() click to toggle source
# File lib/ting_yun/http/abstract_request.rb, line 16
def from
  raise NotImplementedError, ERROR_MESSAGE + ':from method'
end
host() click to toggle source
# File lib/ting_yun/http/abstract_request.rb, line 24
def host
  ""
end
path() click to toggle source
# File lib/ting_yun/http/abstract_request.rb, line 28
def path
  ""
end
port() click to toggle source
# File lib/ting_yun/http/abstract_request.rb, line 20
def port
  ""
end