Cells v4.0.3 Release Notes

    • Cell::Partial now does append the global partial path to its view_paths instead of using unshift and thereby removing possible custom paths.
    • ➕ Adding Cell::Translation which allows using the #t helper. Thanks to @johnlane.
    • 🐎 Performance improvement: when inflecting the view name (90% likely to be done) the caller is now limited to the data we need, saving memory. Thanks @timoschilling for implementing this.
    • In the concept helper, we no longer use classify, which means you can say concept("comment/data") and it will instantiate Comment::Data and not Comment::Datum. Thanks @firedev!