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

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.
This commit is contained in:
Hampton Catlin 2011-07-10 12:51:09 +01:00
parent ffb73065aa
commit 1cb46ebf17

View file

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