Sha256: ba464abef28cf66a0812f79fda8d6cfafce82acf3c62dc76284fa02bc49dd337
Contents?: true
Size: 1.9 KB
Versions: 1
Compression:
Stored size: 1.9 KB
Contents
# Weasel Diesel Sinatra Changelog ## 1.0.0 * It's time for WD to graduate, it's been behaving well in production for a while and no major problems were reported. A new rake task was added in the default Rakefile to print the routes. But besides that, this version didn't add anything major to 0.3.2 ## 0.3.2 * Removed `post_dispatch_hook` since it doesn't work well with `halt` and file responses. Use Sinatra's `after` filter instead. * Fixed a bug with `params_postprocessor_hook`. * Added a 'wd.service' entry to `env` that points to the dispatched service. ## 0.3.1 * Added `post_dispatch_hook`. * Fixed a few default settings. ## 0.3.0 * Added a service generator using thor. `$ thor :service get /foo/bar foo_bar.rb` (Thanks DrNic) ## 0.2.6 * Added a few basic disabled settings for newrelic and airbrake. ## 0.2.5 * added support for `ENV['DONT_LOAD_MODELS']` to avoid loading models. ## 0.2.4 * Fixed the documentation template to support namespaced input params. ## 0.2.3 * Fixed the example of the `params_exception_handler` hook added in the generated `hooks.rb` file. ## 0.2.2 * Added a `params_exception_handler` hook to customize the rescue of an exception being raised in the params processing phase. ## 0.2.1 * fixed the content type on the param verification error message ## 0.2.0 * moved `hooks.rb` and `app.rb` to `/lib` * Automatically load the hooks in the loader if available ## 0.1.0 * Updated `sinatra_config.rb` to automatically store exceptions in `rack.exception` so rack middleware like airbrake can properly make use of the exceptions without exposing any details to the end users. * Added support for documenting the service params as they are defined. (thanks rwfowler) ```ruby service.params do |p| p.string :email, :doc => "Email address of the recipient." end ``` * Started porting test helpers to facilitate API testing. * Updated the guard files. (thanks drnic)
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
wd_sinatra-1.0.0 | CHANGELOG.md |