Compare commits

...

31 Commits

Author SHA1 Message Date
Julia West
3ede22022f Gemoji 1.2.1 2012-11-16 14:07:08 -05:00
Julia West
8bf88ab86e Merge pull request #17 from github/more-missing-emoji
Adding missing squares, 'sparkle', 'package', and 'back'.
2012-11-16 10:34:42 -08:00
Julia West
1e9e262ddf Adding missing squares, sparkle, package, and back.
- Renaming existing squares for consistency with sized naming convention.
2012-11-16 11:31:26 -05:00
Joshua Peek
c03becb3a0 Gemoji 1.2.0 2012-11-15 00:14:54 -06:00
Joshua Peek
ffcccd85c7 More corrections 2012-11-15 00:10:52 -06:00
Joshua Peek
175fbfb2c3 Fix miss named emoji 2012-11-14 23:50:28 -06:00
Joshua Peek
a9e9415fcc Merge pull request #16 from github/updated-code-points
Updated the 1st-gen emoji code points
2012-11-14 16:08:03 -08:00
Joshua Peek
892ac6274d Copy unicode images too 2012-11-14 17:50:21 -06:00
Joshua Peek
7ffe22d83c Add task to find unnamed images 2012-11-14 17:38:51 -06:00
Julia West
c0c2f10406 Recoding 1st-gen emoji. 2012-11-14 17:53:42 -05:00
Joshua Peek
8cca11fdb1 Gemoji 1.1.3 2012-11-12 12:50:08 -06:00
Joshua Peek
91a5a025ca Add emoji path to assets group
Closes #15
2012-11-12 12:49:29 -06:00
Joshua Peek
01e1710b79 Gemoji 1.1.2 2012-10-25 09:17:17 -05:00
Trevor Turk
2f0ad36b67 lowercase! 2012-10-24 22:40:12 -05:00
Trevor Turk
b84e5754d9 lowercase! 2012-10-24 22:34:13 -05:00
Trevor Turk
c6af1af8f6 Merge pull request #14 from github/missing-emoji
Adding missing emoji
2012-10-24 14:59:22 -07:00
Julia West
8190c65f76 Renaming tongue emojis to be consistent with official names and each other. 2012-10-24 17:07:14 -04:00
Julia West
c921ef1b5b Adding missing emoji.
- Renaming kissing_face to kissing_closed_eyes.
- Adding alias for unlinked Heavy White Check Mark.
2012-10-24 16:53:35 -04:00
Jamie Dihiansan
bfa00106fc Merge pull request #13 from github/add-bee-alias
Add bee -> honeybee alias
2012-10-17 09:47:15 -07:00
Mike Skalnik
9ee88a974d Add bee -> honeybee 2012-10-17 11:12:58 -05:00
Joshua Peek
e11d502d4d Gemoji 1.1.1 2012-10-02 17:06:00 -05:00
Joshua Peek
24cb142c5e Fix rake task path 2012-10-02 17:05:39 -05:00
Joshua Peek
42503f1dfa Gemoji 1.1.0 2012-10-02 16:45:16 -05:00
Joshua Peek
3bf04c21ab Restrict gemspec file 2012-10-02 16:32:04 -05:00
Joshua Peek
dbb7e48c66 Update bundler instructions 2012-10-02 16:30:57 -05:00
Joshua Peek
ed273dee14 Fix config paths 2012-10-02 16:28:39 -05:00
Joshua Peek
b5542d5075 Assets not, config 2012-10-02 16:24:21 -05:00
Joshua Peek
e21a63645c Add images path directly 2012-10-02 16:20:53 -05:00
Joshua Peek
c79a1d69d0 Move images into subdir 2012-10-02 16:20:53 -05:00
Joshua Peek
971bcd6236 Separate railtie file 2012-10-02 16:20:51 -05:00
Trevor Turk
d1d6d35da9 add an example to the readme 2012-10-02 15:47:15 -05:00
2218 changed files with 563 additions and 499 deletions

View File

@@ -7,12 +7,20 @@ Emoji images and names. See the LICENSE for copyright information.
Installation
============
Install and require `gemoji` or add it to your Gemfile.
Add `gemoji` to you Gemfile.
``` ruby
gem 'gemoji', :require => 'emoji/railtie'
```
Example Rails Helper
====================
This would allow emojifying content such as: `it's raining :cats: and :dogs:!`
See the [Emoji cheat sheet](http://www.emoji-cheat-sheet.com) for more examples.
```ruby
module EmojiHelper
def emojify(content)

7
Rakefile Normal file
View File

@@ -0,0 +1,7 @@
desc "Checks for missing aliases to unicode sources"
task :unnamed do
unicodes = Dir["./images/emoji/unicode/*.png"].map { |fn| File.basename(fn) }
aliases = Dir["./images/emoji/*.png"].select { |fn| File.symlink?(fn) }.map { |fn| File.basename(fn) }
used_unicodes = aliases.map { |name| File.basename(File.readlink("./images/emoji/#{name}")) }.uniq
puts unicodes - used_unicodes
end

View File

@@ -1,6 +1,6 @@
Gem::Specification.new do |s|
s.name = "gemoji"
s.version = "1.0.0"
s.version = "1.2.1"
s.summary = "Emoji Assets"
s.description = "Emoji assets"
@@ -8,5 +8,5 @@ Gem::Specification.new do |s|
s.email = "support@github.com"
s.homepage = "https://github.com/github/gemoji"
s.files = Dir["README.md", "images/**/*.png", "lib/**/*"]
s.files = Dir["README.md", "images/**/*.png", "lib/**/*.rb", "lib/tasks/*.rake"]
end

View File

@@ -1 +0,0 @@
unicode/e00e.png

View File

@@ -1 +0,0 @@
unicode/e421.png

View File

@@ -1 +0,0 @@
unicode/e50a.png

View File

@@ -1 +0,0 @@
unicode/e42c.png

View File

@@ -1 +0,0 @@
unicode/e532.png

View File

@@ -1 +0,0 @@
unicode/e534.png

View File

@@ -1 +0,0 @@
unicode/e01d.png

View File

@@ -1 +0,0 @@
unicode/e10c.png

View File

@@ -1 +0,0 @@
unicode/e431.png

View File

@@ -1 +0,0 @@
unicode/e04e.png

View File

@@ -1 +0,0 @@
unicode/e334.png

View File

@@ -1 +0,0 @@
unicode/e059.png

View File

@@ -1 +0,0 @@
unicode/e345.png

View File

@@ -1 +0,0 @@
unicode/e249.png

View File

@@ -1 +0,0 @@
unicode/e23f.png

View File

@@ -1 +0,0 @@
unicode/e23b.png

View File

@@ -1 +0,0 @@
unicode/e233.png

View File

@@ -1 +0,0 @@
unicode/e23a.png

View File

@@ -1 +0,0 @@
unicode/e235.png

View File

@@ -1 +0,0 @@
unicode/e239.png

View File

@@ -1 +0,0 @@
unicode/e238.png

View File

@@ -1 +0,0 @@
unicode/e234.png

View File

@@ -1 +0,0 @@
unicode/e232.png

View File

@@ -1 +0,0 @@
unicode/e237.png

View File

@@ -1 +0,0 @@
unicode/e236.png

View File

@@ -1 +0,0 @@
unicode/e502.png

View File

@@ -1 +0,0 @@
unicode/e410.png

View File

@@ -1 +0,0 @@
unicode/e154.png

View File

@@ -1 +0,0 @@
unicode/e533.png

View File

@@ -1 +0,0 @@
unicode/e51a.png

View File

@@ -1 +0,0 @@
unicode/e523.png

View File

@@ -1 +0,0 @@
unicode/e13a.png

View File

@@ -1 +0,0 @@
unicode/e310.png

View File

@@ -1 +0,0 @@
unicode/e436.png

View File

@@ -1 +0,0 @@
unicode/e14d.png

View File

@@ -1 +0,0 @@
unicode/e320.png

View File

@@ -1 +0,0 @@
unicode/e016.png

View File

@@ -1 +0,0 @@
unicode/e42a.png

View File

@@ -1 +0,0 @@
unicode/e13f.png

View File

@@ -1 +0,0 @@
unicode/e051.png

View File

@@ -1 +0,0 @@
unicode/e047.png

View File

@@ -1 +0,0 @@
unicode/e30c.png

View File

@@ -1 +0,0 @@
unicode/e209.png

View File

@@ -1 +0,0 @@
unicode/e325.png

View File

@@ -1 +0,0 @@
unicode/e34c.png

View File

@@ -1 +0,0 @@
unicode/e136.png

View File

@@ -1 +0,0 @@
unicode/e322.png

View File

@@ -1 +0,0 @@
unicode/e521.png

View File

@@ -1 +0,0 @@
unicode/e34b.png

View File

@@ -1 +0,0 @@
unicode/e21a.png

View File

@@ -1 +0,0 @@
unicode/e42e.png

View File

@@ -1 +0,0 @@
unicode/e32a.png

View File

@@ -1 +0,0 @@
unicode/e056.png

View File

@@ -1 +0,0 @@
unicode/e52f.png

View File

@@ -1 +0,0 @@
unicode/e01c.png

View File

@@ -1 +0,0 @@
unicode/e311.png

View File

@@ -1 +0,0 @@
unicode/e148.png

View File

@@ -1 +0,0 @@
unicode/e31b.png

View File

@@ -1 +0,0 @@
unicode/e306.png

View File

@@ -1 +0,0 @@
unicode/e426.png

View File

@@ -1 +0,0 @@
unicode/e001.png

View File

@@ -1 +0,0 @@
unicode/e339.png

View File

@@ -1 +0,0 @@
unicode/e11e.png

View File

@@ -1 +0,0 @@
unicode/e023.png

View File

@@ -1 +0,0 @@
unicode/e525.png

View File

@@ -1 +0,0 @@
unicode/e10f.png

View File

@@ -1 +0,0 @@
unicode/e01f.png

View File

@@ -1 +0,0 @@
unicode/e435.png

View File

@@ -1 +0,0 @@
unicode/e159.png

View File

@@ -1 +0,0 @@
unicode/e150.png

View File

@@ -1 +0,0 @@
unicode/e308.png

View File

@@ -1 +0,0 @@
unicode/e046.png

View File

@@ -1 +0,0 @@
unicode/e104.png

View File

@@ -1 +0,0 @@
unicode/e530.png

View File

@@ -1 +0,0 @@
unicode/e008.png

View File

@@ -1 +0,0 @@
unicode/e242.png

View File

@@ -1 +0,0 @@
unicode/e248.png

View File

@@ -1 +0,0 @@
unicode/e01b.png

View File

@@ -1 +0,0 @@
unicode/e04f.png

View File

@@ -1 +0,0 @@
unicode/e126.png

View File

@@ -1 +0,0 @@
unicode/e14a.png

View File

@@ -1 +0,0 @@
unicode/e132.png

View File

@@ -1 +0,0 @@
unicode/e030.png

View File

@@ -1 +0,0 @@
unicode/e52e.png

View File

@@ -1 +0,0 @@
unicode/e033.png

View File

@@ -1 +0,0 @@
unicode/e037.png

View File

@@ -1 +0,0 @@
unicode/e507.png

View File

@@ -1 +0,0 @@
unicode/e44a.png

View File

@@ -1 +0,0 @@
unicode/e146.png

View File

@@ -1 +0,0 @@
unicode/e41f.png

View File

@@ -1 +0,0 @@
unicode/e324.png

View File

@@ -1 +0,0 @@
unicode/e024.png

View File

@@ -1 +0,0 @@
unicode/e02d.png

View File

@@ -1 +0,0 @@
unicode/e02e.png

View File

@@ -1 +0,0 @@
unicode/e02f.png

View File

@@ -1 +0,0 @@
unicode/e025.png

View File

@@ -1 +0,0 @@
unicode/e026.png

Some files were not shown because too many files have changed in this diff Show More