CustomWords
It allows the user to add custom words to its app.
Installation
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
Usage
Add a custom word in config/custom_words.yml as:
test_word: "Test word"
Use this word in your view with:
<%= custom :test_word %>
Contributing
- Fork it ( https://github.com/[my-github-username]/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