mirror of
https://github.com/middleman/middleman.git
synced 2022-11-09 12:20:27 -05:00
441ec95065
With this change, config.rb modifications that result in an error will print the error to the logs but will not kill the server - the previous version of the application will still be running just fine, so that you can try and fix your config.rb without having to restart. The server no longer simply hangs with no message, which was the previous behavior. This fixes #702.
7 lines
78 B
Ruby
7 lines
78 B
Ruby
helpers do
|
|
def title
|
|
content_tag :h1 do
|
|
"Title"
|
|
end
|
|
end
|
|
end
|