Rails Env Favicon
Made changes in the code to debug and do not understand what's wrong. Hell, I'm on the debug production! This happened to you? To me several times. Library offers one of the ways to solve this problem.
Most everyone will understand from one picture:
This means that on the first tab we have development environment, on second stage, and third it's production(we don't need change this favicon).
It uses Tinycon - A small library for manipulating the favicon.
Installation
Add this line to your application's Gemfile:
gem 'rails-env-favicon'
And then execute:
$ bundle
Setup:
# adds initializer
rails g rails_env_favicon:install
In your JavaScript manifest (e.g. application.js
):
//= require rails_env_favicon
Config
In config/initializers/rails_env_favicon.rb
RailsEnvFavicon.setup do |config|
config.text_color = '#ffffff'
config.background_color = '#549a2f'
end
Contributing
- Fork it ( http://github.com/[my-github-username]/rails_env_favicon/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 new Pull Request