diff options
author | Phil Hughes <me@iamphill.com> | 2017-04-24 14:24:48 +0100 |
---|---|---|
committer | Phil Hughes <me@iamphill.com> | 2017-04-24 14:24:48 +0100 |
commit | dc2f702a0475fcb44c8af7201216bd0470bff8e6 (patch) | |
tree | d6d4e1a942fdd5486c5c6c2f2eb3d39332768c65 /lib/tasks | |
parent | 90f73438998e9f6eaefd19c446569eed6cfae34d (diff) | |
download | gitlab-ce-dc2f702a0475fcb44c8af7201216bd0470bff8e6.tar.gz |
Added emoji description title to award emoji buttons
Closes #29971
Diffstat (limited to 'lib/tasks')
-rw-r--r-- | lib/tasks/gemojione.rake | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/tasks/gemojione.rake b/lib/tasks/gemojione.rake index 5293f5af12d..f6155b2ff2e 100644 --- a/lib/tasks/gemojione.rake +++ b/lib/tasks/gemojione.rake @@ -1,6 +1,6 @@ namespace :gemojione do desc 'Generates Emoji SHA256 digests' - task digests: ['yarn:check', 'environment'] do + task digests: ['environment'] do require 'digest/sha2' require 'json' @@ -19,6 +19,7 @@ namespace :gemojione do entry = { category: emoji_hash['category'], moji: emoji_hash['moji'], + description: emoji_hash['description'], unicodeVersion: Gitlab::Emoji.emoji_unicode_version(name), digest: hash_digest, } |