diff options
author | Jeremy Kemper <jeremy@bitsweat.net> | 2009-03-24 17:03:47 -0700 |
---|---|---|
committer | Jeremy Kemper <jeremy@bitsweat.net> | 2009-03-24 17:03:47 -0700 |
commit | 614fccd8c4bcd5b389c3265dcd9b5219555e2e48 (patch) | |
tree | 827ec3f1d34a8d0c7838c308be22d9c7e2fe4df6 /activesupport/Rakefile | |
parent | 1e72610e76dd678621a0606b698673bd44650f68 (diff) | |
download | rails-614fccd8c4bcd5b389c3265dcd9b5219555e2e48.tar.gz rails-614fccd8c4bcd5b389c3265dcd9b5219555e2e48.tar.bz2 rails-614fccd8c4bcd5b389c3265dcd9b5219555e2e48.zip |
Don't require out of load path
Diffstat (limited to 'activesupport/Rakefile')
-rw-r--r-- | activesupport/Rakefile | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/activesupport/Rakefile b/activesupport/Rakefile index ccbab525ba..f7fd52c7d8 100644 --- a/activesupport/Rakefile +++ b/activesupport/Rakefile @@ -88,7 +88,8 @@ task :release => [ :package ] do end -require 'lib/active_support/values/time_zone' +$LOAD_PATH.unshift "#{File.dirname(__FILE__)}/lib" +require 'active_support/values/time_zone' namespace :tzinfo do desc "Update bundled tzinfo gem. Only copies the subset of classes and definitions required to support Rails time zone features." |