From 858d9d66ad68629fd8c49ef339088387c4afbb5f Mon Sep 17 00:00:00 2001 From: Tom Gilbert Date: Sun, 7 Aug 2005 16:27:13 +0000 Subject: [PATCH] attempt workaround for missing load_file --- lib/rbot/config.rb | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/lib/rbot/config.rb b/lib/rbot/config.rb index 957c63a3..5af50f34 100644 --- a/lib/rbot/config.rb +++ b/lib/rbot/config.rb @@ -3,6 +3,16 @@ module Irc require 'yaml' require 'rbot/messagemapper' + unless YAML.respond_to?(:load_file) + module YAML + def YAML.load_file( filepath ) + File.open( filepath ) do |f| + YAML::load( f ) + end + end + end + end + class BotConfigValue # allow the definition order to be preserved so that sorting by # definition order is possible. The BotConfigWizard does this to allow -- 2.39.2