Class | Nanoc::CompilerDSL |
In: |
lib/nanoc/base/compilation/compiler_dsl.rb
|
Parent: | Object |
Contains methods that will be executed by the site’s `Rules` file.
Creates a new compiler DSL for the given collection of rules.
@api private
@param [Nanoc::RulesCollection] rules_collection The collection of
rules to modify when loading this DSL
@param [Hash] config The site configuration
Creates a compilation rule for all items whose identifier match the given identifier, which may either be a string containing the * wildcard, or a regular expression.
This rule will be applicable to reps with a name equal to `:default`; this can be changed by giving an explicit `:rep` parameter.
An item rep will be compiled by calling the given block and passing the rep as a block argument.
@param [String] identifier A pattern matching identifiers of items that
should be compiled using this rule
@option params [Symbol] :rep (:default) The name of the representation
that should be compiled using this rule
@yield The block that will be executed when an item matching this
compilation rule needs to be compiled
@return [void]
@example Compiling the default rep of the `/foo/` item
compile '/foo/' do rep.filter :erb end
@example Compiling the `:raw` rep of the `/bar/` item
compile '/bar/', :rep => :raw do # do nothing end
Creates a pair of compilation and routing rules that indicate that the specified item(s) should be ignored, e.g. compiled and routed with an empty rule. The items are selected using an identifier, which may either be a string containing the `*` wildcard, or a regular expression.
This meta-rule will be applicable to reps with a name equal to `:default`; this can be changed by giving an explicit `:rep` parameter.
@param [String] identifier A pattern matching identifiers of items that
should be processed using this meta-rule
@option params [Symbol] :rep (:default) The name of the representation
that should be routed using this rule
@return [void]
@example Suppressing compilation and output for all all `/foo/*` items.
ignore '/foo/*'
Includes an additional rules file in the current rules collection.
@param [String] name The name of the rules file — an ".rb" extension is
implied if not explicitly given
@return [void]
@example Including two additional rules files, ‘rules/assets.rb’ and
'rules/content.rb' include_rules 'rules/assets' include_rules 'rules/content'
Creates a layout rule for all layouts whose identifier match the given identifier, which may either be a string containing the * wildcard, or a regular expression. The layouts matching the identifier will be filtered using the filter specified in the second argument. The params hash contains filter arguments that will be passed to the filter.
@param [String] identifier A pattern matching identifiers of layouts
that should be filtered using this rule
@param [Symbol] filter_name The name of the filter that should be run
when processing the layout
@param [Hash] params Extra filter arguments that should be passed to the
filter when processing the layout (see {Nanoc::Filter#run})
@return [void]
@example Specifying the filter to use for a layout
layout '/default/', :erb
@example Using custom filter arguments for a layout
layout '/custom/', :haml, :format => :html5
Creates a pair of compilation and routing rules that indicate that the specified item(s) should be copied to the output folder as-is. The items are selected using an identifier, which may either be a string containing the `*` wildcard, or a regular expression.
This meta-rule will be applicable to reps with a name equal to `:default`; this can be changed by giving an explicit `:rep` parameter.
@param [String] identifier A pattern matching identifiers of items that
should be processed using this meta-rule
@option params [Symbol] :rep (:default) The name of the representation
that should be routed using this rule
@return [void]
@since 3.2.0
@example Copying the `/foo/` item as-is
passthrough '/foo/'
@example Copying the `:raw` rep of the `/bar/` item as-is
passthrough '/bar/', :rep => :raw
Creates a preprocessor block that will be executed after all data is loaded, but before the site is compiled.
@yield The block that will be executed before site compilation starts
@return [void]
Creates a routing rule for all items whose identifier match the given identifier, which may either be a string containing the `*` wildcard, or a regular expression.
This rule will be applicable to reps with a name equal to `:default`; this can be changed by giving an explicit `:rep` parameter.
The path of an item rep will be determined by calling the given block and passing the rep as a block argument.
@param [String] identifier A pattern matching identifiers of items that
should be routed using this rule
@option params [Symbol] :rep (:default) The name of the representation
that should be routed using this rule
@yield The block that will be executed when an item matching this
compilation rule needs to be routed
@return [void]
@example Routing the default rep of the `/foo/` item
route '/foo/' do item.identifier + 'index.html' end
@example Routing the `:raw` rep of the `/bar/` item
route '/bar/', :rep => :raw do '/raw' + item.identifier + 'index.txt' end