Fix some 1.8.7 issues

This commit is contained in:
Ben Hollis 2013-04-06 22:55:49 -07:00
parent d6fa92d70e
commit c602df30dd
3 changed files with 4 additions and 2 deletions

View file

@ -12,6 +12,7 @@ gem "cucumber", "~> 1.2.1"
gem "fivemat", "~> 1.1.0"
gem "aruba", "~> 0.5.1"
gem "rspec", "~> 2.12"
gem 'gherkin', '<= 2.11.6' # for annoying "eval" warnings
# Optional middleman dependencies, included for tests
gem "sinatra"

View file

@ -5,7 +5,8 @@ Feature: Markdown support
Given the Server is running at "markdown-app"
When I go to "/index.html"
Then I should see "<p>Hello World</p>"
@encoding
Scenario: Markdown extensions (Maruku)
Given the Server is running at "markdown-app"
When I go to "/smarty_pants.html"

View file

@ -54,7 +54,7 @@ module Middleman
end
end
params = params.delete_if {|key| key == :supported_extensions }
params.delete(:supported_extensions)
super(path, params)
end