Skip to content

Instantly share code, notes, and snippets.

@binford2k
Last active August 10, 2018 18:07
Show Gist options
  • Save binford2k/36cb07bc7b17fcd2fa1f9e0c512a92e8 to your computer and use it in GitHub Desktop.
Save binford2k/36cb07bc7b17fcd2fa1f9e0c512a92e8 to your computer and use it in GitHub Desktop.
class first {
notify { 'first': }
}
class outside {
include floater # this class is uncontained, so it will "float" outside the graph
}
class floater {
notify { 'floater': }
}
include first
include outside
Class['first'] -> Class['outside']
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment