Coder Social home page Coder Social logo

emoji_data.rb's Introduction

emoji_data.rb

Gem Version Build Status Dependency Status Coverage Status

Ruby library providing low level operations for dealing with Emoji glyphs in the Unicode standard. ๐Ÿ†’

EmojiData is like a swiss-army knife for dealing with Emoji encoding issues. If all you need to do is translate :poop: into ๐Ÿ’ฉ, then there are plenty of other libs out there that will probably do what you want. But once you are dealing with Emoji as a fundamental part of your application, and you start to realize the nightmare of doublebyte encoding or variants, then this library may be your new best friend. :raised_hands:

EmojiData is used in production by Emojitracker.com to parse well over 100M+ emoji glyphs daily. ๐Ÿ’ซ

Don't like Ruby? This library has also now been ported to NodeJS and Elixir.

Installation

Add this line to your application's Gemfile:

gem 'emoji_data'

And then execute:

$ bundle

Or install it yourself as:

$ gem install emoji_data

Currently requires RUBY_VERSION >= 1.9.3.

Usage

Documentation

Full API documentation is available via YARD or here: http://www.rubydoc.info/gems/emoji_data

Examples

Here are some examples of the type of stuff you can do:

>> require 'emoji_data'
=> true

>> EmojiData.from_unified('1f680')
=> #<EmojiData::EmojiChar:0x007f8fdba33b40 @variations=[], @name="ROCKET",
@unified="1F680", @docomo=nil, @au="E5C8", @softbank="E10D", @google="FE7ED",
@image="1f680.png", @sheet_x=25, @sheet_y=4, @short_name="rocket",
@short_names=["rocket"], @text=nil, @apple_img=true, @hangouts_img=true,
@twitter_img=true>

>> EmojiData.all.count
=> 845

>> EmojiData.all_with_variants.count
=> 107

>> EmojiData.find_by_short_name("moon").count
=> 13

>> EmojiData.all.select(&:doublebyte?).map(&:short_name)
=> ["hash", "zero", "one", "two", "three", "four", "five", "six", "seven",
"eight", "nine", "cn", "de", "es", "fr", "gb", "it", "jp", "kr", "ru", "us"]

>> EmojiData.find_by_name("tree").map { |c| [c.unified, c.name, c.render] }
=> [["1F332", "EVERGREEN TREE", "๐ŸŒฒ"], ["1F333", "DECIDUOUS TREE", "๐ŸŒณ"],
["1F334", "PALM TREE", "๐ŸŒด"], ["1F384", "CHRISTMAS TREE", "๐ŸŽ„"], ["1F38B",
"TANABATA TREE", "๐ŸŽ‹"]]

>> EmojiData.scan("I โ™ฅ when marketers talk about the โ˜. #blessed").each do |ec|
?>   puts "Found some #{ec.short_name}!"
>> end
Found some hearts!
Found some cloud!
=> [...]

Contributing

Please be sure to run rake spec and help keep test coverage at ๐Ÿ’ฏ.

There is a full benchmark suite available via rake benchmark. Please run before and after your changes to ensure you have not caused a performance regression.

License

The MIT License (MIT)

emoji_data.rb's People

Contributors

mroth avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.