This repository has been archived by the owner on Aug 1, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
update-emojis.rb
56 lines (53 loc) · 1.96 KB
/
update-emojis.rb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
#
# usage: ruby update.emojis.rb
#
# Updates lib/emojis.rb from the list of png files
# in emoji-cheat-sheet.com/public/graphics/emojis
# which should be an updated clone of
# git://github.com/arvida/emoji-cheat-sheet.com.git
#
# You might want to
# $ cd emoji-cheat-sheet
# $ git pull origin master
# to sync with the upstream
#
#
# Copyright (c) 2013 zunda <zunda at freeshell.org>
#
# Permission is hereby granted, free of charge, to any person
# obtaining a copy of this software and associated documentation
# files (the "Software"), to deal in the Software without
# restriction, including without limitation the rights to use,
# copy, modify, merge, publish, distribute, sublicense, and/or
# sell copies of the Software, and to permit persons to whom the
# Software is furnished to do so, subject to the following conditions:
#
# The above copyright notice and this permission notice shall be
# included in all copies or substantial portions of the Software.
#
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
# EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
# OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
# NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
# HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
# WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
# FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
# OTHER DEALINGS IN THE SOFTWARE.
#
# Extract file names from submodule cloned from
# git://github.com/arvida/emoji-cheat-sheet.com.git
emojis_dir = File.join(File.dirname(__FILE__), 'emoji-cheat-sheet.com/public/graphics/emojis')
emojis = Dir.glob(emojis_dir + '/*.png').map{|n| File.basename(n, '.png')}.sort
# Create a library
dstpath = File.join(File.dirname(__FILE__), 'lib/emojis.rb')
File.open(dstpath, 'w') do |f|
f.puts <<-"_END"
# Created by #{__FILE__}
# with emojis extracted from #{emojis_dir}
module Emoji
EMOJIS = [
#{emojis.map{|n| "'#{n}'"}.join(",\n\t\t")}
]
end
_END
end