alternative asset_host initializer
This commit is contained in:
parent
642ee42b4f
commit
bd47af5744
|
@ -9,10 +9,13 @@ module Middleman
|
|||
class << self
|
||||
|
||||
# Once registered
|
||||
def registered(app)
|
||||
# Default to no host
|
||||
def registered(app, options={})
|
||||
app.config.define_setting :asset_host, false, 'The asset host to use, or false for no asset host, or a Proc to determine asset host'
|
||||
|
||||
if options[:host]
|
||||
config[:asset_host] = options[:host]
|
||||
end
|
||||
|
||||
# Include methods
|
||||
app.send :include, InstanceMethods
|
||||
end
|
||||
|
|
Loading…
Reference in a new issue