lita-pebbles 0.0.5 → 0.0.6
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/lib/lita/handlers/pebbles.rb +7 -1
- data/lib/lita/pebbles/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: b4382a1a60578741851d11ca554e9003d2ddc204
|
4
|
+
data.tar.gz: 20b548fd2643c74111f09b0ae57637cb245b95e9
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 25922ce6ab3db82572bbedda5fcc3f19ee2031a879f26f04065b97955875296e26867346953f331a77f58c86eb9a3c739fae7c0553f8ad86ecea8503af03b2e7
|
7
|
+
data.tar.gz: ce8c08502af17a51b13bdabd4a59eaa8e01a1ab3007a7ebd9d58b2fe9b864bee71fe7f3a64a10b19916a8781daf9441f0f51ca6f4c1807badd4636bb6572960f
|
@@ -26,10 +26,16 @@ module Lita
|
|
26
26
|
|
27
27
|
route /つらい$/, :tsurai, command: false
|
28
28
|
def tsurai(response)
|
29
|
-
return if rand(
|
29
|
+
return if rand(3) == 0
|
30
30
|
response.reply "ねな( ˘ω˘)"
|
31
31
|
end
|
32
32
|
|
33
|
+
route /しのう$/, :shino, command: false
|
34
|
+
def shino(response)
|
35
|
+
return if rand(3) == 0
|
36
|
+
response.reply "いきよう( ˘ω˘)"
|
37
|
+
end
|
38
|
+
|
33
39
|
route /\( ?˘ω˘\)\"?/, :suya, command: false # " this comment is workaround for sublime text syntax highlighting
|
34
40
|
def suya(response)
|
35
41
|
return if rand(2) == 0
|
data/lib/lita/pebbles/version.rb
CHANGED