From 59a6067b3a67a79bfd9a5ce325fc1be4bb6c9e78 Mon Sep 17 00:00:00 2001 From: Chris Eppstein Date: Thu, 9 Jul 2009 12:59:36 -0700 Subject: [PATCH] Load haml-edge if it's all new and shiny. Closes GH-26. --- lib/compass/dependencies.rb | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/lib/compass/dependencies.rb b/lib/compass/dependencies.rb index c1bc784110..81eed1585c 100644 --- a/lib/compass/dependencies.rb +++ b/lib/compass/dependencies.rb @@ -1,9 +1,10 @@ unless defined?(Sass) require 'rubygems' begin - gem 'haml','>= 2.2.0' + gem 'haml-edge', '>= 2.3.0' + $stderr.puts "Loading haml-edge gem." rescue Exception - $stderr.puts "WARNING: haml 2.2 gem not found. Trying to find haml on the load path." + #pass end require 'sass' end \ No newline at end of file