vagrant-libvirt 0.0.9 → 0.0.10

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.
data/CHANGELOG.md CHANGED
@@ -1,3 +1,7 @@
1
+ # 0.0.10 (Oct. 7, 2013)
2
+
3
+ * Delete files from destination to avoid confusions(by <skullzeek@gmail.com>)
4
+
1
5
  # 0.0.9 (September 29, 2013)
2
6
 
3
7
  * fixed version of nokogiri = 1.5.10(by Brian Pitts <brian@polibyte.com>)
data/Rakefile CHANGED
@@ -4,4 +4,7 @@
4
4
  #require 'bundler/setup'
5
5
  require 'bundler/gem_tasks'
6
6
  Bundler::GemHelper.install_tasks
7
-
7
+ task default: [:deftask]
8
+ task :deftask do
9
+ puts 'call rake -T'
10
+ end
@@ -37,7 +37,7 @@ module VagrantPlugins
37
37
 
38
38
  # Rsync over to the guest path using the SSH info
39
39
  command = [
40
- "rsync", "--verbose", "--archive", "-z",
40
+ "rsync", "--del", "--verbose", "--archive", "-z",
41
41
  "--exclude", ".vagrant/",
42
42
  "-e", "ssh -p #{ssh_info[:port]} -o StrictHostKeyChecking=no -i '#{ssh_info[:private_key_path]}'",
43
43
  hostpath,
@@ -1,5 +1,5 @@
1
1
  module VagrantPlugins
2
2
  module ProviderLibvirt
3
- VERSION = '0.0.9'
3
+ VERSION = '0.0.10'
4
4
  end
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: vagrant-libvirt
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.9
4
+ version: 0.0.10
5
5
  prerelease:
6
6
  platform: ruby
7
7
  authors:
@@ -10,7 +10,7 @@ authors:
10
10
  autorequire:
11
11
  bindir: bin
12
12
  cert_chain: []
13
- date: 2013-09-29 00:00:00.000000000 Z
13
+ date: 2013-10-07 00:00:00.000000000 Z
14
14
  dependencies:
15
15
  - !ruby/object:Gem::Dependency
16
16
  name: fog