Sha256: 3f82483e390defdb68da60f5c9a3f0e48d618bff8c70dedb14275620227becd9
Contents?: true
Size: 508 Bytes
Versions: 2
Compression:
Stored size: 508 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.2" end end 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
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
emonti-rbkb-0.6.6 | lib/rbkb/http.rb |
emonti-rbkb-0.6.7 | lib/rbkb/http.rb |