1
0
Fork 0
mirror of https://github.com/haml/haml.git synced 2022-11-09 12:33:31 -05:00

Revert "Embed the version number directly in the gemspec."

This reverts commit e9558f2749.

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
This commit is contained in:
Nathan Weizenbaum 2008-04-29 01:56:36 -07:00
parent b9fbf1287c
commit 7e374ab809

View file

@ -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