Skip to content

Commit

Permalink
Be more flexible accepting haml versions
Browse files Browse the repository at this point in the history
Note GH issue regarding haml 3.1.5
  • Loading branch information
Gabriel Horner and Lake Denman committed May 7, 2012
1 parent 3d4f2b4 commit 0f9e694
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
5 changes: 4 additions & 1 deletion lib/generators/relevance_file/templates/Gemfile.erb
Original file line number Diff line number Diff line change
@@ -1,7 +1,10 @@
source :rubygems

gem 'rails', '~> 3.2.2'
gem 'haml', '3.1.4'
# Avoiding 3.1.5 which has a bug with aliasing
# AbstractController::Rendering#render_to_body
# https://github.com/haml/haml/issues/519
gem 'haml', '>= 3.1.0', '<= 3.1.4'
gem 'configatron', '~> 2.8.3'
gem 'airbrake', '~> 3.0.4'
gem 'factory_girl_rails', '~> 1.2.0'
Expand Down
1 change: 1 addition & 0 deletions techdebt.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,3 +12,4 @@
** Have pg and mysql recipes depend on a unified gem install method. This method would call
gem_package for mri and ree_gem for ree. When this is done, we can add --dont-install-useful-gems
back to the ree installer.
** Upgrade to haml > 3.1.5 once AbstractController::Rendering#render_to_body bug is resolved

0 comments on commit 0f9e694

Please sign in to comment.