0
I Use This!
Inactive

Commits : Listings

Analyzed about 15 hours ago. based on code collected 2 days ago.
Sep 20, 2025 — Sep 20, 2026
Commit Message Contributor Files Modified Lines Added Lines Removed Code Location Date
Make sure cattr_accessors get documented in the rdoc documentation. They're an extension to Ruby, so rdoc needs to be told about them. More... over 19 years ago
Improve this a good bit. Might not be done yet. More... over 19 years ago
Improve documentation. Still have some big methods to write up. More... over 19 years ago
Add comment about how to disable the current exception behavior in production (a 404 response). More... over 19 years ago
Add full documentation for this file. More... over 19 years ago
Add full documentation for this file. More... over 19 years ago
Add copyright notice. More... over 19 years ago
Add copyright notice. More... over 19 years ago
Add full documentation for this file. More... over 19 years ago
Add suggestion for --dry-run if unsure. More... over 19 years ago
This is all ancient documentation. Get rid of it. More... over 19 years ago
Add rails version information and disclaimer. More... over 19 years ago
Add shebang line so that the script can be run directly. More... over 19 years ago
Turn the patch into a self-applying ruby script. Easier to apply, since the user doesn't have to know where their rails installation is -- the script figures it out using rubygems. More... over 19 years ago
Patch for rails scaffolding to add assert_request calls. More... over 19 years ago
Add assert_protocol and assert_method shortcuts to go with assert_params_must_have. This allowed me to factor out a bit of functionality from the two existing methods as well. More... over 19 years ago
Answered a bunch of questions about REST stuff by integrating with the woodcock_server project. More... over 19 years ago
Make production responder friendly to non-HTML requests as well. More... over 19 years ago
Found a way to have production-time handling of the exceptions done by default. No more need to use exception_notifier to do this. The plugin will automatically render and log the exceptions in development, but will log them and display the 404 page in production. More... over 19 years ago
Start fixing some documentation. More... over 19 years ago
Add support for the is_a shortcut, where if you specify an ActiveRecord model as a param name, it's presumed to have the lowercase name of the model, and calls is_a on the model for you. More... over 19 years ago
Add assert_params_must_have, which quickly declares which params are required, and ignores any unrecognized ones. This is what we needed for filters. More... over 19 years ago
Add support for ignoring extra params, in prep for assert_params_must_have. More... over 19 years ago
Implement "must_not_have", which allows us to exclude columns that were added via ActiveRecord types. This required a few extra changes, as I had to standardize on storing params keys as strings (as opposed to symbols) to make sure I could find them later and delete them. More... over 19 years ago
Add code statistics task. More... over 19 years ago
You no longer need the parent rails application to test the plugin. More... over 19 years ago
Fix option that was preventing rcov from generating html output. More... over 19 years ago
Don't need the development and production environments, since we only use the rails environment for testing the plugin. More... over 19 years ago
Improve the rake and test environment considerably. I'd been meaning to clean this up for a while. More... over 19 years ago
Finish the assert_request method, which ties things all together, along with fixing all the functional tests. Most of the functional tests are redundant now, since there's so much testing in the model. This plugin should now be ready for basic use. Most of what's missing can be accomplished with what's already here. More... over 19 years ago