act_as_nameable

Add full name methods on a model


License
MIT
Install
gem install act_as_nameable -v 0.0.3

Documentation

ActAsNameable

Gem Version Build Status

Add full name methods on a model

Usage

class User < ActiveRecord::Base
  act_as_nameable
    with: [:first_name, :surname, :middle_name, :second_surname],
    required: [:first_name, :surname]
end

Installation

Add gem 'act_as_nameable' to Gemfile, then:

bundle install

Or install it yourself as:

gem install act_as_nameable

Test

rake

Contributing

  1. Fork repository
  2. Create a branch following a successfull branching model
  3. Write your feature/fix
  4. Pull request

Licence

Released under the MIT License. See the LICENSE file for further details.