vagrant-box-updater2 0.0.5 → 0.0.6

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,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 1dd4c671549e44b62f5a415a6b2916a38215bc8c
4
- data.tar.gz: 4fe91d7cd28fbb1cfe1a70d1f749b85be5c0a76c
3
+ metadata.gz: 349269ec80151dea79cd1cda88e0bb666c0dd071
4
+ data.tar.gz: 92a50a38e2bf9aea25270053364a27759cb6cb69
5
5
  SHA512:
6
- metadata.gz: 3761900d2f8a30760e812945b3626be6675637fbe0cc2db0c67897f9f0d09301bd929528d4a3dc1824be3a020b96895f7ce16dc09367b30e04ecbe48e8bec14e
7
- data.tar.gz: f3cf1e42cd86538cf64918740819e4faccf523da8bcfdf4cfc6045a2ec239530cf98339c55470ee001a28a3338d06216aa689d906f5def0ec189b1fa92893ec4
6
+ metadata.gz: cf129412004ac975b38dad099b0e7fdcb573527a3e0cab4f448bb4d10fe6b910c6b73538e7931229d3a407c41668f5508560587e2ae1f87b2df384b22d0602f3
7
+ data.tar.gz: 4331a184e1e764f2b5ffc9347a761289996c72cd920e0d0250c2e12bbda0a86d3b06fe38401ac2dbd44d99859dc0b57756e8f8ea17d3fa709a9c7d43f9b8083b
data/Gemfile CHANGED
@@ -1,4 +1,4 @@
1
1
  source 'https://rubygems.org'
2
2
 
3
- # Specify your gem's dependencies in vagrant-box-updater.gemspec
4
- gemspec
3
+ # Specify your gem's dependencies in vagrant-box-updater2.gemspec
4
+ gemspec
@@ -1,7 +1,7 @@
1
1
  require 'yaml'
2
2
  require 'net/http'
3
3
  require 'uri'
4
- require 'vagrant-box-updater/util/common'
4
+ require 'vagrant-box-updater2/util/common'
5
5
 
6
6
  module VagrantPlugins
7
7
  module BoxUpdater
@@ -1,5 +1,5 @@
1
1
  module Vagrant
2
2
  module BoxUpdater
3
- VERSION = "0.0.5"
3
+ VERSION = "0.0.6"
4
4
  end
5
5
  end
@@ -0,0 +1,2 @@
1
+ require "vagrant"
2
+ require "vagrant-box-updater2/plugin"
data/lib/vagrant_init.rb CHANGED
@@ -1 +1 @@
1
- require 'vagrant-box-updater'
1
+ require 'vagrant-box-updater2'
@@ -1,7 +1,7 @@
1
1
  # -*- encoding: utf-8 -*-
2
2
  lib = File.expand_path('../lib', __FILE__)
3
3
  $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
4
- require 'vagrant-box-updater/version'
4
+ require 'vagrant-box-updater2/version'
5
5
 
6
6
  Gem::Specification.new do |gem|
7
7
  gem.name = "vagrant-box-updater2"
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: vagrant-box-updater2
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.5
4
+ version: 0.0.6
5
5
  platform: ruby
6
6
  authors:
7
7
  - Ruslan Lutsenko
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2013-12-13 00:00:00.000000000 Z
12
+ date: 2014-01-06 00:00:00.000000000 Z
13
13
  dependencies: []
14
14
  description: vagrant plugin which save details about added box image (image creation
15
15
  timestamp image source path), during start of virtual machine checks the source
@@ -23,20 +23,19 @@ extensions: []
23
23
  extra_rdoc_files: []
24
24
  files:
25
25
  - Gemfile
26
- - lib/vagrant-box-updater/action/add_box.rb
27
- - lib/vagrant-box-updater/action/up_box.rb
28
- - lib/vagrant-box-updater/config.rb
29
- - lib/vagrant-box-updater/plugin.rb
30
- - lib/vagrant-box-updater/util/common.rb
31
- - lib/vagrant-box-updater/version.rb
32
- - lib/vagrant-box-updater.rb
26
+ - lib/vagrant-box-updater2/action/add_box.rb
27
+ - lib/vagrant-box-updater2/action/up_box.rb
28
+ - lib/vagrant-box-updater2/config.rb
29
+ - lib/vagrant-box-updater2/plugin.rb
30
+ - lib/vagrant-box-updater2/util/common.rb
31
+ - lib/vagrant-box-updater2/version.rb
32
+ - lib/vagrant-box-updater2.rb
33
33
  - lib/vagrant_init.rb
34
34
  - LICENSE.txt
35
35
  - Rakefile
36
36
  - README.md
37
- - vagrant-box-updater.gemspec
37
+ - vagrant-box-updater2.gemspec
38
38
  - .gitignore
39
- - lib/vagrant-box-updater/action/.up_box.rb.swp
40
39
  homepage: https://github.com/alexhouse/vagrant-box-updater
41
40
  licenses: []
42
41
  metadata: {}
@@ -1,2 +0,0 @@
1
- require "vagrant"
2
- require "vagrant-box-updater/plugin"