Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

acts_as_sane_tree

Package Overview
Dependencies
Maintainers
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

acts_as_sane_tree

  • 2.0.6
  • Rubygems
  • Socket score

Version published
Maintainers
1
Created
Source

== acts_as_sane_tree ==== (Building trees with a dash of sanity)

{}[http://travis-ci.org/chrisroberts/acts_as_sane_tree]

This is a drop in replacement for acts_as_tree on systems with Postgresql >= 8.4

== What this provides

A fast way to build trees.

== What version of Rails

  • Rails ~> 4.1.0
  • Rails ~> 4.0.0
  • Rails ~> 3.2.0
  • Rails ~> 3.1.0
  • Rails ~> 3.0.0
  • Rails ~> 2.3.0

== Requirements

  • PostgreSQL version >= 8.4
  • ActiveRecord

== Configuration

Same as acts_as_tree. Basically: Specify a parent_id or the column that holds the parent ID information.

class MyFancyTree < ActiveRecord::Base acts_as_sane_tree end

== Extras

A few extras are provided. Of note are:

  • #depth -> depth from root of the current node
  • #descendents -> all descendents of the current node (provided in either scope or nested hash)
  • nodes_within?(src, chk) - Returns true if chk contains any nodes found within src and all ancestors of nodes within src
  • nodes_within(src, chk) - Returns any matching nodes from chk found within src and all ancestors within src
  • nodes_and_descendents(*args) - Returns all nodes and descendents for given IDs or records. Provided in either scope or nested hash.
  • Works properly with STI
  • Adds 'depth' attribute to returned model instances

== Documentation

Yes, there is documentation. Please read it and find all the fun tools at your fingertips:

http://chrisroberts.github.com/acts_as_sane_tree

== Thanks

  • Thanks to David Hansson for the original
  • Thanks to PostgreSQL for providing tools for sanity

== License

A (now not so large) majority of this was copied directly from the original acts as tree, with the original license:

  • Copyright (c) 2007 David Heinemeier Hansson, released under the MIT license

The new additions continue:

  • Copyright (c) 2011 Chris Roberts, released under the MIT license

FAQs

Package last updated on 22 Nov 2014

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc