├── .gitignore ├── CHANGELOG.md ├── DEVNOTES.md ├── Gemfile ├── LICENSE ├── README.md ├── Rakefile ├── Vagrantfile ├── lib ├── vagrant-vbox-snapshot.rb └── vagrant-vbox-snapshot │ ├── commands │ ├── back.rb │ ├── check_runnable.rb │ ├── delete.rb │ ├── go.rb │ ├── list.rb │ ├── multi_vm_args.rb │ ├── root.rb │ └── take.rb │ ├── plugin.rb │ └── version.rb └── vagrant-vbox-snapshot.gemspec /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dergachev/vagrant-vbox-snapshot/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dergachev/vagrant-vbox-snapshot/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /DEVNOTES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dergachev/vagrant-vbox-snapshot/HEAD/DEVNOTES.md -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dergachev/vagrant-vbox-snapshot/HEAD/Gemfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dergachev/vagrant-vbox-snapshot/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dergachev/vagrant-vbox-snapshot/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dergachev/vagrant-vbox-snapshot/HEAD/Rakefile -------------------------------------------------------------------------------- /Vagrantfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dergachev/vagrant-vbox-snapshot/HEAD/Vagrantfile -------------------------------------------------------------------------------- /lib/vagrant-vbox-snapshot.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dergachev/vagrant-vbox-snapshot/HEAD/lib/vagrant-vbox-snapshot.rb -------------------------------------------------------------------------------- /lib/vagrant-vbox-snapshot/commands/back.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dergachev/vagrant-vbox-snapshot/HEAD/lib/vagrant-vbox-snapshot/commands/back.rb -------------------------------------------------------------------------------- /lib/vagrant-vbox-snapshot/commands/check_runnable.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dergachev/vagrant-vbox-snapshot/HEAD/lib/vagrant-vbox-snapshot/commands/check_runnable.rb -------------------------------------------------------------------------------- /lib/vagrant-vbox-snapshot/commands/delete.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dergachev/vagrant-vbox-snapshot/HEAD/lib/vagrant-vbox-snapshot/commands/delete.rb -------------------------------------------------------------------------------- /lib/vagrant-vbox-snapshot/commands/go.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dergachev/vagrant-vbox-snapshot/HEAD/lib/vagrant-vbox-snapshot/commands/go.rb -------------------------------------------------------------------------------- /lib/vagrant-vbox-snapshot/commands/list.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dergachev/vagrant-vbox-snapshot/HEAD/lib/vagrant-vbox-snapshot/commands/list.rb -------------------------------------------------------------------------------- /lib/vagrant-vbox-snapshot/commands/multi_vm_args.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dergachev/vagrant-vbox-snapshot/HEAD/lib/vagrant-vbox-snapshot/commands/multi_vm_args.rb -------------------------------------------------------------------------------- /lib/vagrant-vbox-snapshot/commands/root.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dergachev/vagrant-vbox-snapshot/HEAD/lib/vagrant-vbox-snapshot/commands/root.rb -------------------------------------------------------------------------------- /lib/vagrant-vbox-snapshot/commands/take.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dergachev/vagrant-vbox-snapshot/HEAD/lib/vagrant-vbox-snapshot/commands/take.rb -------------------------------------------------------------------------------- /lib/vagrant-vbox-snapshot/plugin.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dergachev/vagrant-vbox-snapshot/HEAD/lib/vagrant-vbox-snapshot/plugin.rb -------------------------------------------------------------------------------- /lib/vagrant-vbox-snapshot/version.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dergachev/vagrant-vbox-snapshot/HEAD/lib/vagrant-vbox-snapshot/version.rb -------------------------------------------------------------------------------- /vagrant-vbox-snapshot.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dergachev/vagrant-vbox-snapshot/HEAD/vagrant-vbox-snapshot.gemspec --------------------------------------------------------------------------------