Thor v0.11 Release Notes

Release Date: 2009-07-01 // almost 15 years ago
    • ➕ Added a rake compatibility layer. It allows you to use spec and rdoc tasks on Thor classes.
    • BACKWARDS INCOMPATIBLE: aliases are not generated automatically anymore since it may cause wrong behavior in the invocation system.
    • thor help now show information about any class/task. All those calls are possible:

      thor help describe thor help describe:amazing Or even with default namespaces:

      thor help :spec

    • 0️⃣ Thor::Runner now invokes the default task if none is supplied:

      thor describe # invokes the default task, usually help

    • Thor::Runner now works with mappings:

      thor describe -h

    • ➕ Added some documentation and code refactoring.