Sha256: 1eb1d146a4d9015eadd229cff67dd3e35b9680f643fdc9ae2436d75ec1586da2
Contents?: true
Size: 574 Bytes
Versions: 4
Compression:
Stored size: 574 Bytes
Contents
# ???Why???? would anyone create their own HTTP implementation in ruby with # so many options out there? Short answer: Net:HTTP and others just don't cut # it in lots of edge cases. I needed something I could control completely. module Rbkb module Http VERSION = "0.0.3" end end require 'time' # gives us Time.httpdate parser and output methods require "rbkb/http/common.rb" require "rbkb/http/base.rb" require "rbkb/http/request.rb" require "rbkb/http/response.rb" require "rbkb/http/headers.rb" require "rbkb/http/body.rb" require "rbkb/http/parameters.rb"
Version data entries
4 entries across 4 versions & 2 rubygems
Version | Path |
---|---|
emonti-rbkb-0.6.8 | lib/rbkb/http.rb |
emonti-rbkb-0.6.9.1 | lib/rbkb/http.rb |
emonti-rbkb-0.6.9 | lib/rbkb/http.rb |
rbkb-0.6.10 | lib/rbkb/http.rb |