From 9febabf4100b361de40d6a21a83e80958328a29b Mon Sep 17 00:00:00 2001 From: "Syed M. Sawaid" <34231494+SyedMSawaid@users.noreply.github.com> Date: Wed, 11 Oct 2023 07:54:08 -0700 Subject: [PATCH] Added ActsAsRecursiveTree (#1097) --- README.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index fc4f9929..16e00d89 100644 --- a/README.md +++ b/README.md @@ -489,7 +489,7 @@ Thanks to all [contributors](https://github.com/markets/awesome-ruby/graphs/cont * [business_time](https://github.com/bokmann/business_time) - Support for doing time math in business hours and days. * [ByStar](https://github.com/radar/by_star) - Find ActiveRecord objects by year, month, fortnight, week and more! * [Chronic](https://github.com/mojombo/chronic) - A natural language date/time parser written in pure Ruby. -* [date_range_formatter](https://github.com/darkleaf/date_range_formatter) - The simple tool to make work with date ranges in Ruby more enjoyable. +* [date_range_formatter](https://github.com/darkleaf/date_range_formatter) - The simple tool to make work with date ranges in Ruby more enjoyable. * [groupdate](https://github.com/ankane/groupdate) - The simplest way to group temporal data in ActiveRecord, arrays and hashes. * [holidays](https://github.com/holidays/holidays) - A collection of Ruby methods to deal with statutory and other holidays. * [ice_cube](https://github.com/seejohnrun/ice_cube) - A date recurrence library which allows easy creation of recurrence rules and fast querying. @@ -956,6 +956,7 @@ Where to discover new Ruby libraries, projects and trends. * [ranked-model](https://github.com/mixonic/ranked-model) - A modern row sorting library for ActiveRecord. It uses ARel aggressively and is better optimized than most other libraries. * Tree * [ActsAsTree](https://github.com/amerine/acts_as_tree) - Extends ActiveRecord to add simple support for organizing items into parent–children relationships. + * [ActsAsRecursiveTree](https://github.com/1and1/acts_as_recursive_tree) - ActsAsTree but recursive. * [Ancestry](https://github.com/stefankroes/ancestry) - Organise ActiveRecord model into a tree structure using a variation on the materialised path pattern. * [Awesome Nested Set](https://github.com/collectiveidea/awesome_nested_set) - Awesome Nested Set is an implementation of the nested set pattern for ActiveRecord models. * [Closure Tree](https://github.com/mceachen/closure_tree) - Easily and efficiently make your ActiveRecord models support hierarchies using a Closure Table.