StayClassy
Stay Classy adds classes and ids to your html and html.erb files. You defind a prefix and the directories you wish to make classy and Stay Classy will add classes and ids to all of the HTML tags in the directory (unless specified Stay Classy will target every directory in app/views).
Installation
Add this line to your application's Gemfile:
gem 'stay_classy'
And then execute:
$ bundle
Or install it yourself as:
$ gem install stay_classy
Usage
Start by running the command:
stay_classy
Then enter the prefix you wish to use. For example, a prefix of 'foo' sill produce tags like this inside of a directory named posts:
<p class="foo_posts_p">Lorem ipsum...</p>
Ids are assigned a unique number along with the prefix and tag name.
<p id="foo_p_15">Lorem ipsum...</p>
Keep in mind that stay_classy only targets plain HTML tags, not embedded Ruby.
You can also specify the directories you want to target. When prompted to enter the directories you wish to target simply type in the name. For example, to apply stay_classy to only app/views/posts and app/views/shared, type posts shared when asked which directories to target.
If you don't specify directories within your app/views folder all directories and files within app/views will be targeted by stay_classy
Contributing
- Fork it ( https://github.com/[my-github-username]/stay_classy/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