A reference to a named scope within a group.
Created by the scope/1,2 call inside a group block:
group :deploy do
scope(:web_code) # simple binding
scope(:web_code, ignore_global: true) # opt out of scopes: :all
endFields
:name(atom()) — the scope name to bind to (must match a top-levelscopedefinition):ignore_global(boolean()) — whentrue, the parent group is excluded fromscopes: :allbranch policy activation and falls back to file-based scope detection. Defaults tofalse.