remoji 0.2.0 → 0.2.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/README.adoc +17 -3
- data/lib/remoji.rb +2 -2
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 4d2faaf80c9a16a161c39738eef7e5ab0e32eb5b754af3c10ed0b76fdcff61dc
|
4
|
+
data.tar.gz: 892639d62b47da9001dc72a191b8bfb39c8a2b7395c66d0e32097050ac29f9ce
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 3e923305fadb64e51d39337cdc208ded327dfc159ad229ed4af25257daa9960c295760d299a650d9df42e24202f6aa9c6b2b6ef7233bf32ae08222c659c8d2df
|
7
|
+
data.tar.gz: 363fb1498ac4d5969863044dc267a72e165961b743d69550ee17482f144c56f8ae1be8a80ba6a585045ec0dc755d320e880747920c6881268bc79df826cf4160
|
data/README.adoc
CHANGED
@@ -145,18 +145,32 @@ Print Jenny's number
|
|
145
145
|
|
146
146
|
### (R)Emoji!
|
147
147
|
|
148
|
-
Set
|
148
|
+
Set further aliases up for fun/common stuff
|
149
149
|
|
150
150
|
----
|
151
|
-
/alias smiles /emj -s smiles
|
151
|
+
/alias smiles /emj -s :smiles:
|
152
152
|
/smiles
|
153
153
|
11/09-14:32 < bougyman> 😀 😃 😄 😁 😆 😅 🤣 😂 🙂 🙃 😉 😊 😇
|
154
154
|
11/09-14:32 -=- Irssi: process 0 (emj -n -s smiling) terminated with return code 0
|
155
|
-
/alias monkeysee /emj
|
155
|
+
/alias monkeysee /emj :evil monkey:
|
156
156
|
11/09-14:33 < bougyman> 🙈 🙉 🙊
|
157
157
|
11/09-14:33 -=- Irssi: process 0 (emj -n 'evil monkey') terminated with return code 0
|
158
158
|
----
|
159
159
|
|
160
|
+
Or just use casually.
|
161
|
+
|
162
|
+
----
|
163
|
+
/emj The :cow: jumped over the :moon:
|
164
|
+
11/16-21:41 <bougyman> The 🤠 🐮 🐄 jumped over the 🥮 🌑 🌒 🌓 🌔 🌕 🌖 🌗 🌘 🌙 🌚 🌛 🌜 🌝 🎑
|
165
|
+
----
|
166
|
+
|
167
|
+
Get more exact
|
168
|
+
|
169
|
+
----
|
170
|
+
/emj -e The :cow: jumped over the :full moon:.
|
171
|
+
11/16-21:41 <bougyman> The 🐄 jumped over the 🌕.
|
172
|
+
----
|
173
|
+
|
160
174
|
## Test your Emoji Support
|
161
175
|
|
162
176
|
This is every emoji defined in http://unicode.org/emoji/charts/full-emoji-list.html[The Full Unicode Emoji List]
|
data/lib/remoji.rb
CHANGED