Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/lib/tasks
diff options
context:
space:
mode:
authorPhil Hughes <me@iamphill.com>2017-04-24 16:24:48 +0300
committerPhil Hughes <me@iamphill.com>2017-04-24 16:24:48 +0300
commitdc2f702a0475fcb44c8af7201216bd0470bff8e6 (patch)
treed6d4e1a942fdd5486c5c6c2f2eb3d39332768c65 /lib/tasks
parent90f73438998e9f6eaefd19c446569eed6cfae34d (diff)
Added emoji description title to award emoji buttons
Closes #29971
Diffstat (limited to 'lib/tasks')
-rw-r--r--lib/tasks/gemojione.rake3
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,
}