├── .gitignore ├── Gemfile ├── LICENSE.txt ├── README.md ├── Rakefile ├── lib ├── vagrant-pristine.rb └── vagrant-pristine │ ├── plugin.rb │ └── version.rb └── vagrant-pristine.gemspec /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgrehm/vagrant-pristine/HEAD/.gitignore -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgrehm/vagrant-pristine/HEAD/Gemfile -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgrehm/vagrant-pristine/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgrehm/vagrant-pristine/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- 1 | require "bundler/gem_tasks" 2 | -------------------------------------------------------------------------------- /lib/vagrant-pristine.rb: -------------------------------------------------------------------------------- 1 | require_relative 'vagrant-pristine/plugin' 2 | -------------------------------------------------------------------------------- /lib/vagrant-pristine/plugin.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgrehm/vagrant-pristine/HEAD/lib/vagrant-pristine/plugin.rb -------------------------------------------------------------------------------- /lib/vagrant-pristine/version.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgrehm/vagrant-pristine/HEAD/lib/vagrant-pristine/version.rb -------------------------------------------------------------------------------- /vagrant-pristine.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgrehm/vagrant-pristine/HEAD/vagrant-pristine.gemspec --------------------------------------------------------------------------------