From 2c6f59504699ef24d594fecfa76b7532388e0515 Mon Sep 17 00:00:00 2001 From: geemus Date: Fri, 10 Oct 2014 09:06:38 -0500 Subject: [PATCH] explicitly load version info, now that core no longer implicitly does --- lib/fog.rb | 3 +++ 1 file changed, 3 insertions(+) diff --git a/lib/fog.rb b/lib/fog.rb index 47db4b8d7..b02df3199 100644 --- a/lib/fog.rb +++ b/lib/fog.rb @@ -3,6 +3,9 @@ __LIB_DIR__ = File.expand_path(File.dirname(__FILE__)) $LOAD_PATH.unshift __LIB_DIR__ unless $LOAD_PATH.include?(__LIB_DIR__) +# load version info +require 'fog/version' + # Use core require 'fog/core'