Skip to content

Instantly share code, notes, and snippets.

@eskp
Created February 22, 2013 04:59
Show Gist options
  • Save eskp/5010834 to your computer and use it in GitHub Desktop.
Save eskp/5010834 to your computer and use it in GitHub Desktop.
.
├── lib
│ └── puppet
│ ├── feature
│ │ └── fog.rb
│ ├── provider
│ │ ├── dnsrr
│ │ │ └── fog.rb
│ │ ├── dnszone
│ │ │ └── fog.rb
│ │ └── fog.rb
│ └── type
│ ├── dnsrr.rb
│ └── dnszone.rb
├── LICENSE
├── manifests
│ └── init.pp
├── Modulefile
├── README.markdown
├── spec
│ ├── monkey_patches
│ │ ├── alias_should_to_must.rb
│ │ └── publicize_methods.rb
│ ├── puppet_spec
│ │ ├── files.rb
│ │ ├── fixtures.rb
│ │ ├── matchers.rb
│ │ └── verbose.rb
│ ├── spec_helper.rb
│ ├── spec.opts
│ └── unit
│ └── puppet
│ ├── provider
│ │ ├── dnsrr
│ │ │ └── fog_spec.rb
│ │ ├── dnszone
│ │ │ └── fog_spec.rb
│ │ └── fog_spec.rb
│ └── type
│ ├── dnsrr.rb
│ └── dnszone.rb
└── tests
└── init.pp
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment