Fix some 1.8.7 issues
This commit is contained in:
parent
d6fa92d70e
commit
c602df30dd
1
Gemfile
1
Gemfile
|
@ -12,6 +12,7 @@ gem "cucumber", "~> 1.2.1"
|
||||||
gem "fivemat", "~> 1.1.0"
|
gem "fivemat", "~> 1.1.0"
|
||||||
gem "aruba", "~> 0.5.1"
|
gem "aruba", "~> 0.5.1"
|
||||||
gem "rspec", "~> 2.12"
|
gem "rspec", "~> 2.12"
|
||||||
|
gem 'gherkin', '<= 2.11.6' # for annoying "eval" warnings
|
||||||
|
|
||||||
# Optional middleman dependencies, included for tests
|
# Optional middleman dependencies, included for tests
|
||||||
gem "sinatra"
|
gem "sinatra"
|
||||||
|
|
|
@ -6,6 +6,7 @@ Feature: Markdown support
|
||||||
When I go to "/index.html"
|
When I go to "/index.html"
|
||||||
Then I should see "<p>Hello World</p>"
|
Then I should see "<p>Hello World</p>"
|
||||||
|
|
||||||
|
@encoding
|
||||||
Scenario: Markdown extensions (Maruku)
|
Scenario: Markdown extensions (Maruku)
|
||||||
Given the Server is running at "markdown-app"
|
Given the Server is running at "markdown-app"
|
||||||
When I go to "/smarty_pants.html"
|
When I go to "/smarty_pants.html"
|
||||||
|
|
|
@ -54,7 +54,7 @@ module Middleman
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
params = params.delete_if {|key| key == :supported_extensions }
|
params.delete(:supported_extensions)
|
||||||
|
|
||||||
super(path, params)
|
super(path, params)
|
||||||
end
|
end
|
||||||
|
|
Loading…
Reference in a new issue