All Versions
11
Latest Version
Avg Release Cycle
88 days
Latest Release
3010 days ago

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!).
  • 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).
  • v0.5.0 Changes

    March 06, 2014
    • ๐Ÿ”จ Refactor Hobbit::Base#halt. It now sets the status, merges the headers and writes the body (using Hobbit::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, the Content-Length is not calculated (it's calculated on #write).
  • v0.4.4 Changes

    February 11, 2014
    • ๐Ÿ”จ Refactor Hobbit::Response.
  • v0.4.3 Changes

    February 08, 2014
    • Calculate the Content-Length of a Hobbit::Response using #bytesize instead of #size.
  • v0.4.2 Changes

    December 29, 2013
    • โž• Add Hobbit::Response#redirect, that was missing since Hobbit::Response isn't a Rack::Response subclass.
  • v0.4.1 Changes

    December 26, 2013
    • Hobbit::Response now returns the Content-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) from Hobbit::Response.