From c245d112ecfa196691be902d1a18ca6f0335bad6 Mon Sep 17 00:00:00 2001 From: Chris Eppstein Date: Mon, 3 May 2010 01:28:04 -0700 Subject: [PATCH] Fix a bundler issue with the gemspec --- compass.gemspec | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/compass.gemspec b/compass.gemspec index 8c44565382..0046b3c23a 100644 --- a/compass.gemspec +++ b/compass.gemspec @@ -1,5 +1,5 @@ -$: << "#{File.dirname(__FILE__)}/lib" -require 'compass/version' +path = "#{File.dirname(__FILE__)}/lib" +require File.join(path, 'compass/version') Gem::Specification.new do |gemspec| gemspec.name = "compass"