ruboty-ideone 0.0.3.1 → 0.0.3.2
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/ruboty/handlers/ideone.rb +2 -2
- data/lib/ruboty/ideone/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: 8fc6b23cd28ca0265a5bed784b42f0f47ff6eecb
|
|
4
|
+
data.tar.gz: 0e5fbf667702a4a804c13f4cc7d8f34384c16d4d
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 592d785990af4f0e4d277f7ec5572d01b296bb36561428b3bad0f2e8c832d5bbae2e78e3222e3b05ea8db948eac8a510fba74d239478140df4206790af0ef3c7
|
|
7
|
+
data.tar.gz: 235345b356f585ed33f313f078d43dd67f959b8d62be853c1615f54e8cced8782461b7247b20238cdc2416953f906fba00a487e8228c4c0ac0ae1e5797ccce40
|
|
@@ -173,7 +173,7 @@ module Ruboty
|
|
|
173
173
|
elsif result['result']=='15'
|
|
174
174
|
message.reply result['output']
|
|
175
175
|
else
|
|
176
|
-
message.reply('[Ruboty::Ideone] '+
|
|
176
|
+
message.reply('[Ruboty::Ideone] '+{
|
|
177
177
|
0=>'not running',
|
|
178
178
|
11=>'compilation error',
|
|
179
179
|
12=>'runtime error',
|
|
@@ -181,7 +181,7 @@ module Ruboty
|
|
|
181
181
|
17=>'memory limit exceeded',
|
|
182
182
|
19=>'illegal system call',
|
|
183
183
|
20=>'internal error',
|
|
184
|
-
|
|
184
|
+
}[result['result'].to_i])
|
|
185
185
|
end
|
|
186
186
|
end
|
|
187
187
|
end
|