All Versions
11
Latest Version
Avg Release Cycle
88 days
Latest Release
3217 days ago
Changelog History
Page 1
Changelog History
Page 1
-
v0.6.1
February 20, 2016 -
v0.6.0 Changes
June 12, 2014- ๐ Change the implementation of
Hobbit::Base#halt
. This new implementation is more rack compliant. - โ Test hobbit with oktobertest โ instead of minitest (Because reasons!).
- ๐ Change the implementation of
-
v0.5.1 Changes
- A class is an object too, so allow to
run
classes. - โ Add
Hobbit::Request
, which sets the path info to/
if its empty (instead of doing that on the call method).
- A class is an object too, so allow to
-
v0.5.0 Changes
March 06, 2014- ๐จ Refactor
Hobbit::Base#halt
. It now sets the status, merges the headers and writes the body (usingHobbit::Response#write
) when given a fixnum, a hash or a string. Hobbit::Response
headers and body are not accessors anymore. This is because when you set the body directly, theContent-Length
is not calculated (it's calculated on#write
).
- ๐จ Refactor
-
v0.4.4 Changes
February 11, 2014- ๐จ Refactor
Hobbit::Response
.
- ๐จ Refactor
-
v0.4.3 Changes
February 08, 2014- Calculate the
Content-Length
of aHobbit::Response
using#bytesize
instead of#size
.
- Calculate the
-
v0.4.2 Changes
December 29, 2013- โ Add
Hobbit::Response#redirect
, that was missing sinceHobbit::Response
isn't aRack::Response
subclass.
- โ Add
-
v0.4.1 Changes
December 26, 2013Hobbit::Response
now returns theContent-Length
header as a string.
-
v0.4.0 Changes
December 20, 2013- โ Add halt method.
-
v0.3.1 Changes
December 20, 2013- โ Remove unused
attr_accessor
(:length
) fromHobbit::Response
.
- โ Remove unused