diff options
-rw-r--r-- | lib/rbot/config.rb | 23 |
1 files changed, 22 insertions, 1 deletions
diff --git a/lib/rbot/config.rb b/lib/rbot/config.rb index de7b29b7..eb342f7c 100644 --- a/lib/rbot/config.rb +++ b/lib/rbot/config.rb @@ -114,15 +114,36 @@ module Irc def parse(string) return true if string == "true" return false if string == "false" - raise ArgumentError, "#{string} does not match either 'true' or 'false'" + if string =~ /^-?\d+$/ + return string.to_i != 0 + end + raise ArgumentError, "#{string} does not match either 'true' or 'false', and it's not an integer either" + end + def get + r = super + if r.kind_of?(Integer) + return r != 0 + else + return r + end end end class BotConfigIntegerValue < BotConfigValue def parse(string) + return 1 if string == "true" + return 0 if string == "false" raise ArgumentError, "not an integer: #{string}" unless string =~ /^-?\d+$/ string.to_i end + def get + r = super + if r.kind_of?(Integer) + return r + else + return r ? 1 : 0 + end + end end class BotConfigFloatValue < BotConfigValue |