NomeProprio
Gem para facilitar a gravação de atributos no formato de nome próprio.
Installation
Add this line to your application's Gemfile:
gem 'nome_proprio'
And then execute:
$ bundle
Or install it yourself as:
$ gem install nome_proprio
Usage
class User < ActiveRecord::Base
nome_proprio :nome, :sobrenome
end
user = User.new
user.nome = "jonh"
user.sobrenome = "doe"
user.save!
user = User.first
user.nome #-> "Jonh"
user.sobrenome #-> "Doe"
Contributing
- Fork it ( https://github.com/[my-github-username]/nome_proprio/fork )
- 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 a new Pull Request