You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
386 B
23 lines
386 B
build_groups |
|
============ |
|
|
|
Returns the set of group names that have been enabled. See :doc:`/build_groups` for ways to use this effectively. |
|
|
|
Arguments |
|
--------- |
|
|
|
(none) |
|
|
|
|
|
Examples |
|
-------- |
|
|
|
Use group to organize your Squib code into build groups:: |
|
|
|
Squib::Deck.new do |
|
enable_build :pnp |
|
build :pnp do |
|
save_pdf |
|
end |
|
puts build_groups # outputs :all and :pnp |
|
end
|
|
|