From 61b3247567c2f1b0504c50baac17e0ace50e648d Mon Sep 17 00:00:00 2001 From: Tom Werner Date: Mon, 10 Sep 2007 13:59:10 -0700 Subject: [PATCH] fix stringio load problem --- History.txt | 4 ++++ Rakefile | 2 +- lib/god.rb | 3 ++- 3 files changed, 7 insertions(+), 2 deletions(-) diff --git a/History.txt b/History.txt index aaadf39..a6925f8 100644 --- a/History.txt +++ b/History.txt @@ -1,3 +1,7 @@ +== 0.4.1 +* Bug Fixes + * require 'stringio' for ruby 1.8.5 + == 0.4.0 * Major Enhancements diff --git a/Rakefile b/Rakefile index 00f8e3e..d000fec 100644 --- a/Rakefile +++ b/Rakefile @@ -1,7 +1,7 @@ require 'rubygems' require 'hoe' -Hoe.new('god', '0.4.0') do |p| +Hoe.new('god', '0.4.1') do |p| p.rubyforge_name = 'god' p.author = 'Tom Preston-Werner' p.email = 'tom@rubyisawesome.com' diff --git a/lib/god.rb b/lib/god.rb index bff49a7..9d53c9c 100644 --- a/lib/god.rb +++ b/lib/god.rb @@ -1,6 +1,7 @@ $:.unshift File.dirname(__FILE__) # For use/testing when no gem is installed # core +require 'stringio' require 'logger' # stdlib @@ -52,7 +53,7 @@ end God::EventHandler.load module God - VERSION = '0.4.0' + VERSION = '0.4.1' LOG = Logger.new -- 2.11.4.GIT