2009-12-31 02:01:40 +00:00
* Adding clear_aliased_actions to Ability which removes previously defined actions including defaults - see issue #20
2009-12-31 01:49:49 +00:00
* Append aliased actions (don't overwrite them) - see issue #20
2009-12-15 18:53:05 +00:00
* Adding custom message argument to unauthorized! method (thanks tjwallace) - see issue #18
2009-12-14 16:37:30 +00:00
1.0.1 (Dec 14, 2009)
2009-12-14 16:31:49 +00:00
* Adding :class option to load_resource so one can customize which class to use for the model - see issue #17
2009-12-14 16:18:08 +00:00
* Don't fetch parent of nested resource if *_id parameter is missing so it works with shallow nested routes - see issue #14
2009-12-13 21:47:49 +00:00
1.0.0 (Dec 13, 2009)
2009-12-13 20:32:09 +00:00
* Don't set resource instance variable if it has been set already - see issue #13
2009-12-13 20:22:05 +00:00
* Allowing :nested option to accept an array for deep nesting
2009-12-13 19:39:02 +00:00
* Adding :nested option to load resource method - see issue #10
2009-12-13 19:00:12 +00:00
* Pass :only and :except options to before filters for load/authorize resource methods.
2009-12-13 18:42:10 +00:00
* Adding :collection and :new options to load_resource method so we can specify behavior of additional actions if needed.
2009-12-13 18:03:21 +00:00
* BACKWARDS INCOMPATIBLE: turning load and authorize resource methods into class methods which set up the before filter so they can accept additional arguments.
2009-12-13 21:47:49 +00:00
2009-11-26 18:13:22 +00:00
0.2.1 (Nov 26, 2009)
* many internal refactorings - see issues #11 and #12
2009-11-25 18:25:58 +00:00
* adding "cannot" method to define which abilities cannot be done - see issue #7
2009-11-25 17:55:50 +00:00
* support custom objects (usually symbols) in can definition - see issue #8
2009-12-13 21:47:49 +00:00
2009-11-17 20:58:42 +00:00
0.2.0 (Nov 17, 2009)
2009-11-17 19:59:59 +00:00
* fix behavior of load_and_authorize_resource for namespaced controllers - see issue #3
2009-11-17 19:46:27 +00:00
* support arrays being passed to "can" to specify multiple actions or classes - see issue #2
2009-11-17 18:46:16 +00:00
* adding "cannot?" method to ability, controller, and view which is inverse of "can?" - see issue #1
2009-11-17 18:25:47 +00:00
* BACKWARDS INCOMPATIBLE: use Ability#initialize instead of 'prepare' to set up abilities - see issue #4
2009-11-17 20:58:42 +00:00
0.1.0 (Nov 16, 2009)
2009-11-17 06:15:10 +00:00
* initial release