From 632dc9edc1c78d68908f4d6ff856af35439fb76d Mon Sep 17 00:00:00 2001 From: Travis Tilley Date: Mon, 21 Feb 2011 15:51:54 -0500 Subject: [PATCH] Exact gem versions aren't necessary here. Fixes -> Bundler could not find compatible versions for gem "compass": In Gemfile: middleman depends on compass (= 0.11.beta.2) compass (0.11.beta.2.802bc71) --- middleman.gemspec | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/middleman.gemspec b/middleman.gemspec index 022efaa0..140284cc 100644 --- a/middleman.gemspec +++ b/middleman.gemspec @@ -31,7 +31,7 @@ Gem::Specification.new do |s| s.add_runtime_dependency("yui-compressor", ["~> 0.9.0"]) s.add_runtime_dependency("haml", [">= 3.1.0.alpha.147"]) s.add_runtime_dependency("sass", [">= 3.1.0.alpha.218"]) - s.add_runtime_dependency("compass", ["0.11.beta.2"]) + s.add_runtime_dependency("compass", [">= 0.11.beta.2"]) s.add_runtime_dependency("chunky_png", ["~> 0.12.0"]) s.add_runtime_dependency("oily_png", ["~> 0.3.0"]) unless defined?(JRUBY_VERSION) s.add_runtime_dependency("json_pure", ["~> 1.4.0"])