Utf8EnforcerWorkaround
Make utf8 enforcer tag to be applied only for non-standards-complying browsers.
Requirements
utf8_enforcer_workaround depends on Rails and browser
Supported Rails versions
- Rails 3.x
- Rails 4.x
- Rails 5.x
Installation
Add this line to your application's Gemfile:
gem 'utf8_enforcer_workaround'
And then execute:
$ bundle
Or install it yourself as:
$ gem install utf8_enforcer_workaround
Usage
Add this line of code in your ApplicationController:
utf8_enforcer_workaround
Alternatively you can write your own logic in your ApplicationController to decide whether or not to include the utf8 enforcer tag. Here is an example showing the default logic:
before_action do
@utf8_enforcer_tag_enabled = browser.ie?
end
Development
gem install bundler
bundle install
bundle exec appraisal generate
bundle exec appraisal install
bundle exec appraisal rake
Contributing
- Fork it
- Create your feature branch (
git checkout -b my-new-feature) - Commit your changes (
git commit -am 'Added some feature') - Push to the branch (
git push origin my-new-feature) - Create new Pull Request
Copyright
Copyright (c) 2012-2019 Jarl Friis. See LICENSE.txt for further details.


