Skip to content

Latest commit

 

History

History
23 lines (16 loc) · 386 Bytes

build_groups.rst

File metadata and controls

23 lines (16 loc) · 386 Bytes

build_groups

Returns the set of group names that have been enabled. See /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