Skip to content

Latest commit

 

History

History
76 lines (53 loc) · 2.62 KB

CHANGELOG.md

File metadata and controls

76 lines (53 loc) · 2.62 KB

Changelog

0.5.0 (2014-10-02)

Compare changes in gem | Compare changes in template

0.4.0 (2014-09-20)

Compare changes in gem | Compare changes in template

0.3.0 (2014-09-09)

Compare changes in gem | Compare changes in template

  • Add encode helper. #69 and pliny-template#132

    • Add helpers Pliny::Helpers::Encode to your Endpoints::Base
    • Replace calls to MultiJson.encode with encode in all your endpoints.
  • Serializers::Base#serialize will now serialize Arrays and others Enumberable objects by itself. pliny-template#125

    Replace in your Endpoints the call to

    MultiJson.encode User.all.map { |x| serialize(x) }

    with

    encode serialize(User.all)
  • New CastingConfigHelpers pre casts env vars, so you don't have to at all the call sites.

    See pliny-template#131 for how to use it.

  • Introduce lib/application.rb. pliny-template#133

    Useful when using gems, like Sidekiq. This allows you to require your pliny application in one call.
    For example in the Procfile.

    worker: bundle exec sidekiq --require ./lib/application.rb
    

0.2.1 (2014-07-21)

Compare changes in gem | Compare changes in template

0.1.0 (2014-06-19)

Compare changes in gem | Compare changes in template

0.0.4 (2014-06-13)

Compare changes in gem | Compare changes in template

0.0.3 (2014-06-04)

Compare changes in gem | Compare changes in template