vagrant-mutate 1.0.1 → 1.0.2

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: f06fc73611de7264e75ab5119ee342a81a801c59
4
- data.tar.gz: 1fb41c5d86fe2ca5fe26037c24f45f85c193217a
3
+ metadata.gz: d9f5739877315cbc00036f84ac76e697884eff45
4
+ data.tar.gz: f0dfedb7bf667667c9a81b3a6a8fb0425ab2f838
5
5
  SHA512:
6
- metadata.gz: c242373022383aeef9a6859c1d7ac178ce6df64feb6e71afb49b082b9967d4fc4a742456b581a6b228afcf3e94ddd1a874b00a90c30f8fccb9e27d74aa348bbd
7
- data.tar.gz: 2faa8fd60c73f6f92839847a1bd1a593e4f713e118b8205e3408a43d3dec860d81f02d5019a00e6e1dbe8587925bc14ccb1bce3ee1f632fb99e0f2ffb2c406f8
6
+ metadata.gz: a17e8ea3d61dbca0bf7369ebf49ca273f14eaabb78930c6da9d0522cfd645c72512532995bfddb2bd119518e3ebbec6fd14671cb7bd7040d168a58b89a61f319
7
+ data.tar.gz: 9e6dc28b36f05489d755c7b16867d932a119ccef32b4d9e893c4584c91f8adfa466e6a1b9a4cc04e5b7110245cb9a76eedcc1fa16695df51cb790cc2bb6f8896
data/CHANGELOG.md CHANGED
@@ -1,3 +1,6 @@
1
+ # 1.0.2 (2015-09-06)
2
+ * Allow period in box name when loading from URL (#75)
3
+
1
4
  # 1.0.1 (2015-08-16)
2
5
  * Throw error during version search when missing box (#72)
3
6
 
data/README.md CHANGED
@@ -29,7 +29,7 @@ First, you must install [qemu-img](http://wiki.qemu.org/Main_Page) and the libvi
29
29
 
30
30
  #### Red Hat and derivatives
31
31
 
32
- yum install qemu-img libvirt-devel
32
+ yum install qemu-img libvirt-devel ruby-libvirt
33
33
 
34
34
  #### OS X
35
35
 
@@ -56,7 +56,7 @@ module VagrantMutate
56
56
  # if it ends in .box remove that extension
57
57
  # if not just remove leading slash
58
58
  name = nil
59
- if url.path =~ /([-\w]+).box$/
59
+ if url.path =~ /([-.\w]+).box$/
60
60
  name = Regexp.last_match[1]
61
61
  else
62
62
  name = url.path.sub(/^\//, '')
@@ -1,3 +1,3 @@
1
1
  module VagrantMutate
2
- VERSION = '1.0.1'
2
+ VERSION = '1.0.2'
3
3
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: vagrant-mutate
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.1
4
+ version: 1.0.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Brian Pitts
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2015-08-17 00:00:00.000000000 Z
11
+ date: 2015-09-06 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler