0.0
No commit activity in last 3 years
No release in over 3 years
A simple LookUpTable to cache large (!) and static(!) data
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Development

Runtime

> 3.1
 Project Readme

LookUpTable¶ ↑

STILL IN DEVELOPMENT!

Requirements:¶ ↑

  • Rails 3.x

  • Ruby 1.8.7, 1.9.2, 1.9.3

Install¶ ↑

Put following to your gemfile:

gem 'look_up_table'

Usage¶ ↑

class Foobar < ActiveRecord::Base
  # Allows: Foobar.lut :id
  look_up_table :id

  # Allows: Foobar.lut :foo
  look_up_table :foo

  # Allows: Foobar.lut :bar
  look_up_table :bar

  # Allows: Foobar.lut :foobar
  look_up_table :foobar
end

TODOs¶ ↑

  • Rename gem to ‘rails-look_up_table’

  • More DOCs