Project

array

0.0
No commit activity in last 3 years
No release in over 3 years
Event-hooked Array, Sorted Array, Unique Array, Sorted-Unique Array, Downward-Compositing Array, Downward-Compositing Sorted Array, Downward-Compositing Unique Array, Downward-Compositing Sorted-Unique Array.
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Project Readme

Hooked Array

http://rubygems.org/gems/array-hooked

Description

Provides ::Array::Hooked.

Summary

A subclass of Array that offers event hooks for pre-insert/pre-set/pre-delete, insert/set/delete and a reference to a configuration instance that owns the Array instance.

Install

  • sudo gem install array-hooked

Usage

Provides methods that can be overridden that will be called during every corresponding event:

  • pre_set_hook
  • post_set_hook
  • pre_get_hook
  • post_get_hook
  • pre_delete_hook
  • post_delete_hook

As a result, several internal perform methods have been created:

  • perform_set_between_hooks
  • perform_insert_between_hooks
  • perform_delete_between_hooks

Also provides methods corresponding to each already-existing method + '_without_hooks', which causes methods to bypass hooks.

License

(The MIT License)

Copyright (c) Asher

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the 'Software'), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.