mirror of
https://github.com/middleman/middleman.git
synced 2022-11-09 12:20:27 -05:00
Fix some 1.8.7 issues
This commit is contained in:
parent
d6fa92d70e
commit
c602df30dd
3 changed files with 4 additions and 2 deletions
1
Gemfile
1
Gemfile
|
@ -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"
|
||||
|
|
|
@ -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"
|
||||
|
|
|
@ -54,7 +54,7 @@ module Middleman
|
|||
end
|
||||
end
|
||||
|
||||
params = params.delete_if {|key| key == :supported_extensions }
|
||||
params.delete(:supported_extensions)
|
||||
|
||||
super(path, params)
|
||||
end
|
||||
|
|
Loading…
Reference in a new issue