Commit 704eb37e by Jon Frisby

Updating change log, readme and TODO list.

parent e41c7131
== HEAD == HEAD
* Don't show column limits for integer and boolean types.
* Add sorting for columns and indexes. (Helpful for out-of-order migration * Add sorting for columns and indexes. (Helpful for out-of-order migration
execution!) execution!)
* BugFix for models without tables.
* Annotate unit tests in subfolders. * Annotate unit tests in subfolders.
* Add generator to install rakefile that automatically annotates on db:migrate. * Add generator to install rakefile that automatically annotates on db:migrate.
* Fix gemspec generation now that Jeweler looks at Gemfile.
* Correct Gemfile to clarify which environments need which gems. * Correct Gemfile to clarify which environments need which gems.
* Add an .rvmrc to facilitate clean development. * Add an .rvmrc to facilitate clean development.
* Refactor out ActiveRecord monkey-patch to permit extending without * Refactor out ActiveRecord monkey-patch to permit extending without
...@@ -16,13 +15,18 @@ ...@@ -16,13 +15,18 @@
the special case. the special case.
* Merge away a few branches whose changes we already have in order to clean up * Merge away a few branches whose changes we already have in order to clean up
the Github network graph. the Github network graph.
* Accept String or Symbol for :position (et al) options.
* Rename "annotate" bin to "annotate_models" to avoid conflicting with
ImageMagick.
* Add rdoc output formatting as an option.
* Add new configuration option for controlling where info is placed in
fixtures/factories.
* Fix for models without tables.
* Fix gemspec generation now that Jeweler looks at Gemfile.
* Fix warning: `NOTE: Gem::Specification#default_executable= is deprecated with * Fix warning: `NOTE: Gem::Specification#default_executable= is deprecated with
no replacement. It will be removed on or after 2011-10-01.` no replacement. It will be removed on or after 2011-10-01.`
* Fix handling of files with no trailing newline when putting annotations at * Fix handling of files with no trailing newline when putting annotations at
the end of the file. the end of the file.
* Accept String or Symbol for :position (et al) options.
* Rename "annotate" bin to "annotate_models" to avoid conflicting with
ImageMagick.
== 2.4.2 2009-11-21 == 2.4.2 2009-11-21
......
...@@ -97,7 +97,7 @@ you can use to tailor the output. ...@@ -97,7 +97,7 @@ you can use to tailor the output.
-s, --simple-indexes Concat the column's related indexes in the annotation -s, --simple-indexes Concat the column's related indexes in the annotation
--model-dir dir Annotate model files stored in dir rather than app/models --model-dir dir Annotate model files stored in dir rather than app/models
-R, --require path Additional files to require before loading models -R, --require path Additional files to require before loading models
-e [tests,fixtures,factories] Do not annotate fixtures, test files, and/or factories -e [tests,fixtures] Do not annotate fixtures/factories, and/or test files
--exclude --exclude
......
...@@ -2,3 +2,4 @@ TODO ...@@ -2,3 +2,4 @@ TODO
----- -----
add "top" and "bottom" as synonyms for "before" and "after" add "top" and "bottom" as synonyms for "before" and "after"
change 'exclude' to 'only' (double negatives are not unconfusing) change 'exclude' to 'only' (double negatives are not unconfusing)
make format_* options go through normal channel for options
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment