0.0
No commit activity in last 3 years
No release in over 3 years
Extends ActiveResource with column prefix option, handy for legacy databases
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Development

Runtime

>= 3.2.7
 Project Readme

Column Prefix

Extends ActiveResource with column prefix option. Column Prefix will then alias all columns with the same column name, minus the prefix.

Please note that if an unprefixed name would override an existing attribute or method it will not be aliased. However, you can still access the attribute via its prefixed version.

Installation

Add this line to your application's Gemfile:

gem 'column_prefix'

And then execute:

$ bundle

Or install it yourself as:

$ gem install column_prefix

Usage

In your model, declare the column_prefix you would like to alias. For the prefix "entry_":

class Entry < ActiveRecord::Base
  column_prefix "entry_"
end

You can then access attributes via their simpler name. For example, the column "entry_title" can be accessed via e.title or e.entry_title (where e is an instance of Entry).

Contributing

  1. Fork it
  2. Create your feature branch (git checkout -b my-new-feature)
  3. Commit your changes (git commit -am 'Added some feature')
  4. Push to the branch (git push origin my-new-feature)
  5. Create new Pull Request