Sha256: 81fd9d9c878b7c40db1f73fb3dcbea9d300cdc8f28815219cf82fdc86016d92a

Contents?: true

Size: 1.07 KB

Versions: 9

Compression:

Stored size: 1.07 KB

Contents

require 'forwardable'

class ExampleRequest
  extend Forwardable
  def_delegators :@headers, :[], :[]=
  attr_accessor  :method, :path, :version, :body

  def initialize(method = :get, path = "/", version = "1.1", headers = {}, body = nil)
    @method = method.to_s.upcase
    @path = path
    @version = "1.1"
    @headers = {
      'Host'       => 'www.example.com',
      'Connection' => 'keep-alive',
      'User-Agent' => 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_7_3) AppleWebKit/535.11 (KHTML, like Gecko) Chrome/17.0.963.78 S',
      'Accept'     => 'text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8',
      'Accept-Encoding' => 'gzip,deflate,sdch',
      'Accept-Language' => 'en-US,en;q=0.8',
      'Accept-Charset'  => 'ISO-8859-1,utf-8;q=0.7,*;q=0.3'
    }.merge(headers)

    @body = body
  end

  def to_s
    if @body && !@headers['Content-Length']
      @headers['Content-Length'] = @body.length
    end

    "#{@method} #{@path} HTTP/#{@version}\r\n" <<
    @headers.map { |k, v| "#{k}: #{v}" }.join("\r\n") << "\r\n\r\n" <<
    (@body ? @body : '')
  end
end

Version data entries

9 entries across 9 versions & 1 rubygems

Version Path
reel-0.6.1 spec/support/example_request.rb
reel-0.6.0 spec/support/example_request.rb
reel-0.6.0.pre5 spec/support/example_request.rb
reel-0.6.0.pre4 spec/support/example_request.rb
reel-0.6.0.pre3 spec/support/example_request.rb
reel-0.6.0.pre2 spec/support/example_request.rb
reel-0.6.0.pre1 spec/support/example_request.rb
reel-0.5.0 spec/support/example_request.rb
reel-0.5.0.pre spec/support/example_request.rb