Project

demoji

0.04
No commit activity in last 3 years
No release in over 3 years
Replace emojis as to not blow up utf8 MySQL
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Development

 Project Readme

Demoji

MySQL configured with utf-8 encoding blows up when trying to save text rows containing emojis, etc., to address this, Demoji rescues from that specific exception and replaces the culprit chars with empty spaces.

This is a workaround until Rails adds support for UTF8MB4 in migrations, schema, etc.

Installation

Add this line to your application's Gemfile:

gem 'demoji'

And then execute:

$ bundle

Or install it yourself as:

$ gem install demoji

Usage

Write an initializer in: config/initializers/demoji.rb:

ActiveRecord::Base.send :include, Demoji

Contributing

  1. Fork it
  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 new Pull Request