blob: eb80a48d1195dce71ac4f7e9f566e7d4d9cbb032 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
|
class SpellPlugin < Plugin
def help(plugin, topic="")
"spell <word> => check spelling of <word>, suggest alternatives"
end
def privmsg(m)
unless(m.params && m.params =~ /^\w+$/)
m.reply "incorrect usage: " + help(m.plugin)
return
end
p = IO.popen("ispell -a -S", "w+")
if(p)
p.puts m.params
p.close_write
p.each_line {|l|
if(l =~ /^\*/)
m.reply "#{m.params} may be spelled correctly"
return
elsif(l =~ /^\s*&.*: (.*)$/)
m.reply "#{m.params}: #$1"
return
elsif(l =~ /^\s*\+ (.*)$/)
m.reply "#{m.params} is presumably derived from " + $1.downcase
return
elsif(l =~ /^\s*#/)
m.reply "#{m.params}: no suggestions"
return
end
}
else
m.reply "couldn't exec ispell :("
return
end
end
end
plugin = SpellPlugin.new
plugin.register("spell")
|