0.0
No commit activity in last 3 years
No release in over 3 years
Helps user to set custom_words in yaml files and use them on the view.
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
 Dependencies

Development

active_support
~> 3.0
~> 1.7
~> 10.0
 Project Readme

CustomWords

Custom Words Logo

Gem Version

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"

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' %>

Contributing

  1. Fork it ( https://github.com/appprova/custom_words/fork )
  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 a new Pull Request