From 7e374ab80965d8577430e3c721f23bdc6b08e5cf Mon Sep 17 00:00:00 2001 From: Nathan Weizenbaum Date: Tue, 29 Apr 2008 01:56:36 -0700 Subject: [PATCH] Revert "Embed the version number directly in the gemspec." This reverts commit e9558f27496126cf846329172efdf6cc2b00e464. The gemspec is going to be incompatible with GitHub anyway as long as we're using FileList; there's no point avoiding File.read for now. Conflicts: haml.gemspec --- haml.gemspec | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/haml.gemspec b/haml.gemspec index c72a8649..1895191a 100644 --- a/haml.gemspec +++ b/haml.gemspec @@ -4,7 +4,7 @@ require 'rake' HAML_GEMSPEC = Gem::Specification.new do |spec| spec.name = 'haml' spec.summary = "An elegant, structured XHTML/XML templating engine.\nComes with Sass, a similar CSS templating engine." - spec.version = "1.9.0" + spec.version = File.read('VERSION').strip spec.authors = ['Nathan Weizenbaum', 'Hampton Catlin'] spec.email = 'haml@googlegroups.com' spec.description = <<-END