├── .gitignore └── README.md /.gitignore: -------------------------------------------------------------------------------- 1 | ## MAC OS 2 | .DS_Store 3 | 4 | ## TEXTMATE 5 | *.tmproj 6 | tmtags 7 | 8 | ## EMACS 9 | *~ 10 | \#* 11 | .\#* 12 | 13 | ## VIM 14 | *.swp 15 | 16 | ## PROJECT::GENERAL 17 | coverage 18 | rdoc 19 | doc 20 | pkg 21 | *.gem 22 | .bundle 23 | Gemfile.lock 24 | 25 | ## PROJECT::SPECIFIC 26 | dist 27 | 28 | ## IntelliJ IDEA 29 | *.ipr 30 | *.iml 31 | *.iws 32 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Showoff Has Moved 2 | 3 | Puppetlabs is now maintaining [Showoff](https://github.com/puppetlabs/showoff). I keep this repo here only to preserve the issues and whatnot. Puppetlabs maintains the Gem and is now the parent of this network. 4 | 5 | Thanks! 6 | Scott 7 | --------------------------------------------------------------------------------