summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--lib/rbot/ircbot.rb6
-rw-r--r--lib/rbot/plugins.rb31
2 files changed, 26 insertions, 11 deletions
diff --git a/lib/rbot/ircbot.rb b/lib/rbot/ircbot.rb
index b673c673..fac6c290 100644
--- a/lib/rbot/ircbot.rb
+++ b/lib/rbot/ircbot.rb
@@ -1003,11 +1003,11 @@ class IrcBot
say m.replyto, "pong"
when (/^rescan$/i)
if(@auth.allow?("config", m.source, m.replyto))
- m.reply "Saving ..."
+ m.reply "saving ..."
save
- m.reply "Rescanning ..."
+ m.reply "rescanning ..."
rescan
- m.okay
+ m.reply "done. #{@plugins.status(true)}"
end
when (/^quiet$/i)
if(auth.allow?("talk", m.source, m.replyto))
diff --git a/lib/rbot/plugins.rb b/lib/rbot/plugins.rb
index 9fa7ad88..b735c4c5 100644
--- a/lib/rbot/plugins.rb
+++ b/lib/rbot/plugins.rb
@@ -299,22 +299,37 @@ module Plugins
cleanup
@@plugins = Hash.new
scan
+
end
- # return list of help topics (plugin names)
- def helptopics
+ def status(short=false)
# Active plugins first
if(@@plugins.length > 0)
- list = " [#{length} plugin#{'s' if length > 1}: " + @@plugins.values.uniq.collect{|p| p.name}.sort.join(", ")
+ list = "#{length} plugin#{'s' if length > 1}"
+ if short
+ list << " loaded"
+ else
+ list << ": " + @@plugins.values.uniq.collect{|p| p.name}.sort.join(", ")
+ end
else
- list = " [no plugins active"
+ list = "no plugins active"
end
# Ignored plugins next
- list << "; #{Underline}#{@ignored.length} plugin#{'s' if @ignored.length > 1} ignored#{Underline}: use #{Bold}help ignored plugins#{Bold} to see why" unless @ignored.empty?
+ unless @ignored.empty?
+ list << "; #{Underline}#{@ignored.length} plugin#{'s' if @ignored.length > 1} ignored#{Underline}"
+ list << ": use #{Bold}help ignored plugins#{Bold} to see why" unless short
+ end
# Failed plugins next
- list << "; #{Reverse}#{@failed.length} plugin#{'s' if @failed.length > 1} failed to load#{Reverse}: use #{Bold}help failed plugins#{Bold} to see why" unless @failed.empty?
- list << "]"
- return list
+ unless @failed.empty?
+ list << "; #{Reverse}#{@failed.length} plugin#{'s' if @failed.length > 1} failed to load#{Reverse}"
+ list << ": use #{Bold}help failed plugins#{Bold} to see why" unless short
+ end
+ list
+ end
+
+ # return list of help topics (plugin names)
+ def helptopics
+ return " [#{status}]"
end
def length