From 1cb46ebf17bb36a27218be428475450afe5c143b Mon Sep 17 00:00:00 2001 From: Hampton Catlin Date: Sun, 10 Jul 2011 12:51:09 +0100 Subject: [PATCH] The gemspec didn't specify two needed development gems. Both of these are required to run the tests during development. Since there isn't a Gemfile for this project and I can't find where the development requirements are, I am assuming this is the right place to put this. --- haml.gemspec | 2 ++ 1 file changed, 2 insertions(+) diff --git a/haml.gemspec b/haml.gemspec index 6110351e..f0d876d6 100644 --- a/haml.gemspec +++ b/haml.gemspec @@ -23,6 +23,8 @@ HAML_GEMSPEC = Gem::Specification.new do |spec| spec.add_development_dependency 'yard', '>= 0.5.3' spec.add_development_dependency 'maruku', '>= 0.5.9' + spec.add_development_dependency 'hpricot' + spec.add_develompent_dependency 'ruby_parser' readmes = Dir['*'].reject{ |x| x =~ /(^|[^.a-z])[a-z]+/ || x == "TODO" } spec.executables = ['haml', 'html2haml']