Document Middleman::Extensions.register
This commit is contained in:
parent
b2f6d0db09
commit
3c4578b239
|
@ -122,6 +122,23 @@ module Middleman
|
||||||
@_registered ||= {}
|
@_registered ||= {}
|
||||||
end
|
end
|
||||||
|
|
||||||
|
# Register a new extension. Choose a name which will be
|
||||||
|
# used to activate the extension in config.rb, like this:
|
||||||
|
#
|
||||||
|
# activate :my_extension
|
||||||
|
#
|
||||||
|
# Provide your extension module either as the namespace
|
||||||
|
# parameter, or return it from the block:
|
||||||
|
#
|
||||||
|
# @param [Symbol] name The name of the extension
|
||||||
|
# @param [Module] namespace The extension module
|
||||||
|
# @param [String] version A RubyGems-style version string stating
|
||||||
|
# the versions of middleman this extension
|
||||||
|
# is compatible with.
|
||||||
|
# @yield Instead of passing a module in namespace, you can provide
|
||||||
|
# a block which returns your extension module. This gives
|
||||||
|
# you the ability to require other files only when the
|
||||||
|
# extension is activated.
|
||||||
def register(name, namespace=nil, version=nil, &block)
|
def register(name, namespace=nil, version=nil, &block)
|
||||||
# If we've already got a matching extension that passed the
|
# If we've already got a matching extension that passed the
|
||||||
# version check, bail out.
|
# version check, bail out.
|
||||||
|
|
Loading…
Reference in a new issue