Sprocket/Rails emojione package, see http://emojione.com
Add this line to your application's Gemfile:
gem 'emojione-rails'
And then execute:
$ bundle
Or install it yourself as:
$ gem install emojione-rails
Images can be copied to your public directory with rake emojione
in your app. This is the recommended approach since the images will be available at a consistent location and not slow down your asset pipeline.
$ rake emojione
In your JavaScript manifest (e.g. application.js
):
//= require emojione
In your CSS/SCSS manifest (e.g. application.scss
):
@import "emojione";
If you want to use Emojione Awesome, you can also optionally add the following line to your CSS/SCSS manifest:
@import "emojione-awesome";
Everything is available at https://github.com/Ranks/emojione
This gem bundle emojione png and svg version but not the sprites (for size purposes mainly). If you need to use the emojione sprites, this gem is not for you.
See LICENCE file
- Fork it ( https://github.com/dimelo/emojione-rails/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