This repository is private.
All pages are served over SSL and all pushing and pulling is done over SSH.
No one may fork, clone, or view it unless they are added as a member.
Every repository with this icon (
) is private.
Every repository with this icon (
This repository is public.
Anyone may fork, clone, or view it.
Every repository with this icon (
) is public.
Every repository with this icon (
namecase /
README
Namecase
========
This is a trivial plugin that tries to fix the case of a string if it is given a string that is all caps or all lower
case
class Person < ActiveRecord::Base
namecase :first_name, :on => :create
end
>> Person.create(:first_name => 'larry').first_name
=> "Larry"
>> Person.create(:first_name => 'ANNOYING').first_name
=> "Annoying"







