X-Git-Url: https://git.netwichtig.de/gitweb/?a=blobdiff_plain;f=data%2Frbot%2Fplugins%2Frot13.rb;h=4176772631a1ec674fb7e51c1e16527488713921;hb=43ebe3abdcb86e0edebb2d581e07064df7fdf467;hp=28e9243f5fc0a779401fe1d72bf54aae211a3507;hpb=676dd61e6b0bea5f506d064039a685944aefd6fb;p=user%2Fhenk%2Fcode%2Fruby%2Frbot.git diff --git a/data/rbot/plugins/rot13.rb b/data/rbot/plugins/rot13.rb index 28e9243f..41767726 100644 --- a/data/rbot/plugins/rot13.rb +++ b/data/rbot/plugins/rot13.rb @@ -1,10 +1,25 @@ +#-- vim:sw=2:et +#++ +# +# :title: ROT13 plugin +# class RotPlugin < Plugin + def initialize + super + @bot.register_filter(:rot13) { |s| + ss = s.dup + ss[:text] = s[:text].tr("A-Za-z", "N-ZA-Mn-za-m") + ss + } + end + def help(plugin, topic="") "rot13 => encode to rot13 or back" end + def rot13(m, params) - m.reply params[:string].tr("A-Za-z", "N-ZA-Mn-za-m"); + m.reply @bot.filter(:rot13, params[:string].to_s).to_s end end plugin = RotPlugin.new -plugin.map 'rot13 :string' +plugin.map 'rot13 *string'