Skip to content

Latest commit

 

History

History
51 lines (38 loc) · 1.77 KB

README.md

File metadata and controls

51 lines (38 loc) · 1.77 KB

UserFullname

Gem Version Build Status Dependency Status Coverage Status Code Climate Stories in Ready endorse

User fullname is a gem which support first name, last name and full name. You need only full name in Your database.

Installation

Add this line to your application's Gemfile:

gem 'user_fullname'

And then execute:

$ bundle

Or install it yourself as:

$ gem install user_fullname

Usage

class User
  include UserFullname
end

user.fullname = 'John Smith'
user.firstname #=> 'John'
user.lastname #=> 'Smith'
user.fullname #=> 'John Smith'
user.shortname #=> 'J.Smith'
user.firstname = 'Bob'
user.fullname #=> 'Bob Smith'
user.lastname = 'Marley'
user.fullname #=> 'Bob Marley'
user.shortname #=> 'B.Marley'

Contributing

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