From 0d33f1dc28e6cca72de3f00515926cd74c047cf4 Mon Sep 17 00:00:00 2001 From: Brian Terlson Date: Fri, 27 Mar 2009 11:12:39 -0500 Subject: [PATCH] Add the library's dir to the front of the load path for ease of gem building --- lib/httpclient.rb | 1 + 1 file changed, 1 insertion(+) diff --git a/lib/httpclient.rb b/lib/httpclient.rb index 7982384..412442f 100644 --- a/lib/httpclient.rb +++ b/lib/httpclient.rb @@ -5,6 +5,7 @@ # redistribute it and/or modify it under the same terms of Ruby's license; # either the dual license version in 2003, or any later version. +$:.unshift(File.dirname(__FILE__)) require 'uri' require 'stringio'