├── .gitignore ├── README.md ├── Rakefile ├── knife-flip.gemspec └── lib ├── chef └── knife │ ├── environmentflip.rb │ ├── nodeflip.rb │ └── roleflip.rb └── knife-flip.rb /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonlives/knife-flip/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonlives/knife-flip/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonlives/knife-flip/HEAD/Rakefile -------------------------------------------------------------------------------- /knife-flip.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonlives/knife-flip/HEAD/knife-flip.gemspec -------------------------------------------------------------------------------- /lib/chef/knife/environmentflip.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonlives/knife-flip/HEAD/lib/chef/knife/environmentflip.rb -------------------------------------------------------------------------------- /lib/chef/knife/nodeflip.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonlives/knife-flip/HEAD/lib/chef/knife/nodeflip.rb -------------------------------------------------------------------------------- /lib/chef/knife/roleflip.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonlives/knife-flip/HEAD/lib/chef/knife/roleflip.rb -------------------------------------------------------------------------------- /lib/knife-flip.rb: -------------------------------------------------------------------------------- 1 | module KnifeFlip 2 | VERSION = "0.1.6" 3 | end 4 | --------------------------------------------------------------------------------