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 CHANGED
@@ -1,15 +1,15 @@
1
1
  ---
2
2
  !binary "U0hBMQ==":
3
3
  metadata.gz: !binary |-
4
- OTU2NGRjM2VhMDU3NjRlYzhiMGQ5ZjAxNDg5NDhiZDU4ZDVkY2FhOQ==
4
+ YTBjMGYyMGQyY2I2MmY1MDZmZTZhOGE5Nzc5NWNlZTk5M2U4Y2M4NA==
5
5
  data.tar.gz: !binary |-
6
- MmU1MWU3M2UzOWYyNWRiMzUzMDJkNTAzMmJlNThkODdmOTdmMGM3Nw==
6
+ MGI4NjYwNTBjODEyZDM3MjY4MDhjOTBlOGQxZTNhNmZkNTQ4ZGQ4Ng==
7
7
  SHA512:
8
8
  metadata.gz: !binary |-
9
- ODBmN2FkNDg2ZTc3NzBiODA0MzkxNTZlYTUzMDljY2Y5NDJhNzhjYTJmODgw
10
- NGE1MTAzODEwZTE0YTUzNTZjZmU3YmZjZGRkM2MxMzYyMTRmY2U2NGMzYzFi
11
- ODQ3NTYyMDg2NjNlYTE5YzU2MmE0YjM5Y2FmZGJmNjg2ZGY4MzE=
9
+ ZTc1NjMxZmJhNWViYjA0Yzc5MWEzOTg5NDA4YzM2ZjgxY2NiNzAyOTQ0NzMw
10
+ MDM0YjNiMzQ4YTBlYzMxYjYyZTE5YmI5YTM2YWNkZDgzNmUwMzY1OGFmYjY3
11
+ YzJiM2Y5MTc1M2FiYjc2NmM3YmVkMDczYzBlNDk1NTAwNjFiMmM=
12
12
  data.tar.gz: !binary |-
13
- NDhjMDlhNzU3ZGJmOGJmYTFmODU3YzVmNjVlODE0OGEyYzIzMGEzNmNkZTE2
14
- ZGQxY2JiZGNiNzNhN2YxMjNiMDU1ODVmNDczZTJkMDIzMDM5Y2Q2MDQwOTgz
15
- ZjYzZmJmZDY5MjA2YWI5ODkyNjBiYWVkYzhlYmE2M2MxNjMwMDM=
13
+ YTE0OGY1MWE5Y2IyM2VmMzMwMzY0ZTJhMTY1MTZjZmQ1NDE1ZjIzNTdjNjJk
14
+ MzgwMzAwOTE4MWVjMzAyMTA0YWI0NjgzNWQ1YjUzODcxNzY5MjUxMGMyMWU1
15
+ ZTFhZjQ5YjA4MDJjZTFjM2NlZTI1YjljOWUyZTA2NGUzMWYxNTU=
data/Gemfile CHANGED
@@ -10,4 +10,4 @@ end
10
10
 
11
11
  group :test do
12
12
  gem 'rake'
13
- end
13
+ end
data/README.md CHANGED
@@ -2,11 +2,13 @@ vagrant-nuke
2
2
  ========
3
3
  [![Build Status](https://travis-ci.org/n00bworks/vagrant-nuke.svg)](https://travis-ci.org/n00bworks/vagrant-nuke)
4
4
 
5
+ [![Gem Version](https://badge.fury.io/rb/vagrant-nuke.svg)](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
- gem coming soon
11
+ vagrant install plugin vagrant-nuke
10
12
 
11
13
  ### Usage
12
14
 
@@ -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
@@ -1,5 +1,5 @@
1
1
  module Vagrant
2
2
  module Nuke
3
- VERSION = '0.0.2'
3
+ VERSION = '0.0.3'
4
4
  end
5
5
  end
data/lib/vagrant-nuke.rb CHANGED
@@ -1,10 +1,2 @@
1
- require 'bundler'
2
-
3
- begin
4
- require 'vagrant'
5
- rescue LoadError
6
- Bundler.require(:default, :development)
7
- end
8
-
9
1
  require 'vagrant-nuke/plugin'
10
- require 'vagrant-nuke/command'
2
+ require 'vagrant-nuke/command'
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.2
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: []