|
| 1 | +== TODO |
| 2 | + |
| 3 | +* Improve spec coverage for Thor::Runner |
| 4 | +* Improve help output to list shorthand switches, too |
| 5 | + |
| 6 | +== Current |
| 7 | + |
| 8 | +* BACKWARDS INCOMPATIBLE: aliases are not generated automatically anymore |
| 9 | + since it wrong behavior to the invocation system. |
| 10 | + |
| 11 | +* thor help now show information about any class/task. All those calls are |
| 12 | + possible: |
| 13 | + |
| 14 | + thor help describe |
| 15 | + thor help describe:amazing |
| 16 | + |
| 17 | + Or even with default namespaces: |
| 18 | + |
| 19 | + thor help :spec |
| 20 | + |
| 21 | +* Thor::Runner now invokes the default task if none is supplied: |
| 22 | + |
| 23 | + thor describe # invokes the default task, usually help |
| 24 | + |
| 25 | +* Thor::Runner now works with mappings: |
| 26 | + |
| 27 | + thor describe -h |
| 28 | + |
| 29 | +* Added some documentation and code refactoring. |
| 30 | + |
| 31 | +== 0.9.8, released 2008-10-20 |
| 32 | + |
| 33 | +* Fixed some tiny issues that were introduced lately. |
| 34 | + |
| 35 | +== 0.9.7, released 2008-10-13 |
| 36 | + |
| 37 | +* Setting global method options on the initialize method works as expected: |
| 38 | + All other tasks will accept these global options in addition to their own. |
| 39 | +* Added 'group' notion to Thor task sets (class Thor); by default all tasks |
| 40 | + are in the 'standard' group. Running 'thor -T' will only show the standard |
| 41 | + tasks - adding --all will show all tasks. You can also filter on a specific |
| 42 | + group using the --group option: thor -T --group advanced |
| 43 | + |
| 44 | +== 0.9.6, released 2008-09-13 |
| 45 | + |
| 46 | +* Generic improvements |
| 47 | + |
| 48 | +== 0.9.5, released 2008-08-27 |
| 49 | + |
| 50 | +* Improve Windows compatibility |
| 51 | +* Update (incorrect) README and task.thor sample file |
| 52 | +* Options hash is now frozen (once returned) |
| 53 | +* Allow magic predicates on options object. For instance: `options.force?` |
| 54 | +* Add support for :numeric type |
| 55 | +* BACKWARDS INCOMPATIBLE: Refactor Thor::Options. You cannot access shorthand forms in options hash anymore (for instance, options[:f]) |
| 56 | +* Allow specifying optional args with default values: method_options(:user => "mislav") |
| 57 | +* Don't write options for nil or false values. This allows, for example, turning color off when running specs. |
| 58 | +* Exit with the status of the spec command to help CI stuff out some. |
| 59 | + |
| 60 | +== 0.9.4, released 2008-08-13 |
| 61 | + |
| 62 | +* Try to add Windows compatibility. |
| 63 | +* BACKWARDS INCOMPATIBLE: options hash is now accessed as a property in your class and is not passed as last argument anymore |
| 64 | +* Allow options at the beginning of the argument list as well as the end. |
| 65 | +* Make options available with symbol keys in addition to string keys. |
| 66 | +* Allow true to be passed to Thor#method_options to denote a boolean option. |
| 67 | +* If loading a thor file fails, don't give up, just print a warning and keep going. |
| 68 | +* Make sure that we re-raise errors if they happened further down the pipe than we care about. |
| 69 | +* Only delete the old file on updating when the installation of the new one is a success |
| 70 | +* Make it Ruby 1.8.5 compatible. |
| 71 | +* Don't raise an error if a boolean switch is defined multiple times. |
| 72 | +* Thor::Options now doesn't parse through things that look like options but aren't. |
| 73 | +* Add URI detection to install task, and make sure we don't append ".thor" to URIs |
| 74 | +* Add rake2thor to the gem binfiles. |
| 75 | +* Make sure local Thorfiles override system-wide ones. |
0 commit comments