Skip to content

roberthead/boxey

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

18 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Boxey provides the [] element reference operator to ActiveRecord classes.

Installation

Add this line to your Gemfile:

gem 'boxey'

Configuration

With the boxey gem installed, all ActiveRecord classes gain the [] method.

By default, [] fetches by the class's primary_key and any other fields that are validated by uniqueness (unless the validation has if conditions).

Optionally, you may explicitly specify the fields to query and their relative priority by calling the boxey method.

class User < ActiveRecord::Base
  boxey :id, :login, :email
  validates :login, uniqueness: true
  validates :email, uniqueness: true
end

Use

Given the configuration above:

User[1] returns the User with an id of 1.

User['me@example.com'] returns the User with an email of 'me@example.com'.

[] returns nil if no match is found.

About

A little gem that adds element reference (the [ ] operator) to ActiveRecord classes.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published