It allows the user to add custom words to its app.
Add this line to your application's Gemfile:
gem 'custom_words'
And then execute:
$ bundle install
After that, initialize your custom_words.yml file with:
$ rails generate custom_words:install
Add a custom word in config/custom_words.yml
as:
test_word: "Test word"
Or a nested custom word like:
word_group:
word_subgroup:
custom_word: 'such a nice feature'
Use this word in your view with:
<%= custom :test_word %> or
<%= custom 'test_word' %>
With nested custom words:
<%= custom 'word_group.word_subgroup.custom_word' %>
- Fork it ( https://github.com/appprova/custom_words/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