mirror of
https://github.com/middleman/middleman.git
synced 2022-11-09 12:20:27 -05:00
Backwards compatibility with old Rack aPI. Fixes #447
This commit is contained in:
parent
b202e71348
commit
fffa80a987
1 changed files with 14 additions and 0 deletions
|
@ -23,6 +23,8 @@ module Middleman
|
|||
app.extend ClassMethods
|
||||
app.extend ServerMethods
|
||||
|
||||
Middleman.extend CompatibleClassMethods
|
||||
|
||||
# Include instance methods
|
||||
app.send :include, InstanceMethods
|
||||
end
|
||||
|
@ -135,6 +137,18 @@ module Middleman
|
|||
end
|
||||
end
|
||||
|
||||
module CompatibleClassMethods
|
||||
# Create a new Class which is based on Middleman::Application
|
||||
# Used to create a safe sandbox into which extensions and
|
||||
# configuration can be included later without impacting
|
||||
# other classes and instances.
|
||||
#
|
||||
# @return [Class]
|
||||
def server(&block)
|
||||
::Middleman::Application.server(&block)
|
||||
end
|
||||
end
|
||||
|
||||
# Methods to be mixed-in to Middleman::Application
|
||||
module InstanceMethods
|
||||
# Backwards-compatibility with old request.path signature
|
||||
|
|
Loading…
Reference in a new issue