An open API service indexing awesome lists of open source software.

https://github.com/radar/find_by_hash

Extension to ActiveRecord to allow you to do findy-thingies with hashes
https://github.com/radar/find_by_hash

Last synced: 2 months ago
JSON representation

Extension to ActiveRecord to allow you to do findy-thingies with hashes

Awesome Lists containing this project

README

        

# Find By Hash

Find By Hash is a library that does exactly what it says on the box: it finds by a Hash. It will improve all aspects of your life.

All methods require a hash to be passed to them, otherwise you'll get a `NotAHash` error.

## `find_by_hash`

Finds a single record based on the given hash.

Post.find_by_hash(:title => "Hey there!")

## `find_all_by_hash`

Finds all records based on the given hash.

Post.find_all_by_hash(:title => "Hey there!")

## `find_or_create_by_hash`

Finds or creates a record based on the given hash.

Post.find_or_create_by_hash(:title => "Hey there!")

## `find_or_initialize_by_hash`

Finds or initializes a record based on the given hash.

Post.find_or_initialize_by_hash(:title => "Hey there!")