UserFullname
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
- Fork it
- Create your feature branch (
git checkout -b my-new-feature
) - Commit your changes (
git commit -am 'Add some feature'
) - Push to the branch (
git push origin my-new-feature
) - Create new Pull Request