vagrant-nuke 0.0.2 → 0.0.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +8 -8
- data/Gemfile +1 -1
- data/README.md +3 -1
- data/lib/vagrant-nuke/command.rb +5 -1
- data/lib/vagrant-nuke/version.rb +1 -1
- data/lib/vagrant-nuke.rb +1 -9
- data/vagrant-nuke.gemspec +1 -1
- metadata +2 -1
checksums.yaml
CHANGED
|
@@ -1,15 +1,15 @@
|
|
|
1
1
|
---
|
|
2
2
|
!binary "U0hBMQ==":
|
|
3
3
|
metadata.gz: !binary |-
|
|
4
|
-
|
|
4
|
+
YTBjMGYyMGQyY2I2MmY1MDZmZTZhOGE5Nzc5NWNlZTk5M2U4Y2M4NA==
|
|
5
5
|
data.tar.gz: !binary |-
|
|
6
|
-
|
|
6
|
+
MGI4NjYwNTBjODEyZDM3MjY4MDhjOTBlOGQxZTNhNmZkNTQ4ZGQ4Ng==
|
|
7
7
|
SHA512:
|
|
8
8
|
metadata.gz: !binary |-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
9
|
+
ZTc1NjMxZmJhNWViYjA0Yzc5MWEzOTg5NDA4YzM2ZjgxY2NiNzAyOTQ0NzMw
|
|
10
|
+
MDM0YjNiMzQ4YTBlYzMxYjYyZTE5YmI5YTM2YWNkZDgzNmUwMzY1OGFmYjY3
|
|
11
|
+
YzJiM2Y5MTc1M2FiYjc2NmM3YmVkMDczYzBlNDk1NTAwNjFiMmM=
|
|
12
12
|
data.tar.gz: !binary |-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
13
|
+
YTE0OGY1MWE5Y2IyM2VmMzMwMzY0ZTJhMTY1MTZjZmQ1NDE1ZjIzNTdjNjJk
|
|
14
|
+
MzgwMzAwOTE4MWVjMzAyMTA0YWI0NjgzNWQ1YjUzODcxNzY5MjUxMGMyMWU1
|
|
15
|
+
ZTFhZjQ5YjA4MDJjZTFjM2NlZTI1YjljOWUyZTA2NGUzMWYxNTU=
|
data/Gemfile
CHANGED
data/README.md
CHANGED
|
@@ -2,11 +2,13 @@ vagrant-nuke
|
|
|
2
2
|
========
|
|
3
3
|
[](https://travis-ci.org/n00bworks/vagrant-nuke)
|
|
4
4
|
|
|
5
|
+
[](http://badge.fury.io/rb/vagrant-nuke)
|
|
6
|
+
|
|
5
7
|
Vagrant plugin to remove all boxes listed under vagrant box list
|
|
6
8
|
|
|
7
9
|
### Installation
|
|
8
10
|
|
|
9
|
-
|
|
11
|
+
vagrant install plugin vagrant-nuke
|
|
10
12
|
|
|
11
13
|
### Usage
|
|
12
14
|
|
data/lib/vagrant-nuke/command.rb
CHANGED
|
@@ -1,6 +1,10 @@
|
|
|
1
1
|
module Vagrant
|
|
2
2
|
module Nuke
|
|
3
3
|
class Command < Vagrant.plugin('2', :command)
|
|
4
|
+
def self.synopsis
|
|
5
|
+
"remove all boxes under vagrant box list."
|
|
6
|
+
end
|
|
7
|
+
|
|
4
8
|
def execute
|
|
5
9
|
options = {}
|
|
6
10
|
opts = OptionParser.new do |o|
|
|
@@ -47,4 +51,4 @@ module Vagrant
|
|
|
47
51
|
|
|
48
52
|
end
|
|
49
53
|
end
|
|
50
|
-
end
|
|
54
|
+
end
|
data/lib/vagrant-nuke/version.rb
CHANGED
data/lib/vagrant-nuke.rb
CHANGED
data/vagrant-nuke.gemspec
CHANGED
|
@@ -8,7 +8,7 @@ Gem::Specification.new do |s|
|
|
|
8
8
|
s.authors = ['n00bworks']
|
|
9
9
|
s.email = ['mat@n00bworks.com']
|
|
10
10
|
s.summary = "Delete all existing Vagrant boxes currently stored"
|
|
11
|
-
s.description = "Using Vagrant can collect alot of boxes which after a while can become cluttered. While you can delete them individually Nuke will remove all linked boxes."
|
|
11
|
+
s.description = "Using Vagrant can collect alot of boxes which after a while can become cluttered. While you can delete them individually Nuke will remove all linked boxes. Basically removes all boxes listed in vagrant box list."
|
|
12
12
|
s.files = `git ls-files`.split($\)
|
|
13
13
|
s.executables = s.files.grep(%r{^bin/}).map{ |f| File.basename(f) }
|
|
14
14
|
s.require_paths = ['lib']
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: vagrant-nuke
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.0.
|
|
4
|
+
version: 0.0.3
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- n00bworks
|
|
@@ -12,6 +12,7 @@ date: 2015-03-13 00:00:00.000000000 Z
|
|
|
12
12
|
dependencies: []
|
|
13
13
|
description: Using Vagrant can collect alot of boxes which after a while can become
|
|
14
14
|
cluttered. While you can delete them individually Nuke will remove all linked boxes.
|
|
15
|
+
Basically removes all boxes listed in vagrant box list.
|
|
15
16
|
email:
|
|
16
17
|
- mat@n00bworks.com
|
|
17
18
|
executables: []
|