Establish a set of commands that can be enabled/disabled together to allow for customized builds. See :doc:`/build_groups` for ways to use this effectively.
@ -6,10 +6,14 @@ Establish a set of commands that can be enabled/disabled together to allow for c
Required Arguments
------------------
..note::
This is an argument, not an option like most DSL methods. See example below.
group
default: ``:all``
The name of the group. Convention is to use a Ruby symbol.
The name of the build group. Convention is to use a Ruby symbol.
&block
@ -22,7 +26,7 @@ Examples
Use group to organize your Squib code into build groups::
Disable the given build group for the rest of the build. Thus, code within the corresponding :doc:`/dsl/group` block will not be executed. See :doc:`/build_groups` for ways to use this effectively.
@ -7,10 +7,22 @@ Disable the given build group for the rest of the build. Thus, code within the c
Required Arguments
------------------
group
build_group_name
default: ``:all``
the name of the group to disable. Convention is to use a Ruby symbol.
..note::
Examples
--------
Can be used to disable a group (even if it's enabled via command line)::
Enable the given build group for the rest of the build. Thus, code within the corresponding :doc:`/dsl/group` block will be executed. See :doc:`/build_groups` for ways to use this effectively.
@ -7,10 +7,19 @@ Enable the given build group for the rest of the build. Thus, code within the co
Required Arguments
------------------
group
build_group_name
the name of the group to enable. Convention is to use a Ruby symbol.
Examples
--------
Can be used to disable a group (even if it's enabled via command line)::