vagrant-berkshelf 1.3.4 → 1.3.5
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 +4 -4
- data/CHANGELOG.md +9 -0
- data/lib/berkshelf/vagrant/version.rb +1 -1
- data/vagrant-berkshelf.gemspec +1 -1
- metadata +11 -5
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 75a7f0c862786e6c4087fe054c26746c5587c0cb
|
|
4
|
+
data.tar.gz: 65bec1ca7219deb58c819edaf1f5b7b321c16d20
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 7dd3be2cac0407aa14f3068b2e0e171aab2f8235ad0d705207f7add2677807c810d417fa1d971990df4dec5674d3f66a0cd4244cf3e227e9c5097391e5f70e1a
|
|
7
|
+
data.tar.gz: 43ddcfa088938aafe3a1d405d30ce7b7affd86fb99bc299abb29866e4c956e2df7dea7d7e6bc2f59902ad36fb9db4f59edc0a47ce2f1f4a84f35bf5a2edb3041
|
data/CHANGELOG.md
CHANGED
|
@@ -1,7 +1,13 @@
|
|
|
1
|
+
# 1.3.5
|
|
2
|
+
|
|
3
|
+
* Relax constraint on SSH to fix Vagrant 1.4 support
|
|
4
|
+
|
|
1
5
|
# 1.3.4
|
|
6
|
+
|
|
2
7
|
- Fix undefined constant error when provisioning with Vagrant AWS
|
|
3
8
|
|
|
4
9
|
# 1.2.0
|
|
10
|
+
|
|
5
11
|
- Rename to vagrant-berkshelf
|
|
6
12
|
- Trigger the plugin also on `vagrant reload`
|
|
7
13
|
- Check Vagrant version to see if it's supported
|
|
@@ -10,12 +16,15 @@
|
|
|
10
16
|
- Respect --no-provision flag
|
|
11
17
|
|
|
12
18
|
# 1.1.2
|
|
19
|
+
|
|
13
20
|
- Support Vagrant 1.2
|
|
14
21
|
- Plugin defaults to enabled, if Berksfile exists.
|
|
15
22
|
|
|
16
23
|
# 1.1.0
|
|
24
|
+
|
|
17
25
|
- Plugin defaults to disabled. Set 'config.berkshelf.enabled = true' in Vagrant config
|
|
18
26
|
|
|
19
27
|
# 1.0.0
|
|
28
|
+
|
|
20
29
|
- Separated Berkshelf Vagrant plugin into it's own gem (this one)
|
|
21
30
|
- Support Vagrant 1.1.x
|
data/vagrant-berkshelf.gemspec
CHANGED
|
@@ -25,7 +25,7 @@ Gem::Specification.new do |spec|
|
|
|
25
25
|
|
|
26
26
|
# Explicit locks to ensure we activate the proper gem versions for Vagrant
|
|
27
27
|
spec.add_dependency 'i18n', '~> 0.6.0'
|
|
28
|
-
spec.add_dependency 'net-ssh', '
|
|
28
|
+
spec.add_dependency 'net-ssh', '>= 2.6.6', '< 2.8.0'
|
|
29
29
|
spec.add_dependency 'net-scp', '~> 1.1.0'
|
|
30
30
|
|
|
31
31
|
spec.add_development_dependency 'bundler', '~> 1.3'
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: vagrant-berkshelf
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.3.
|
|
4
|
+
version: 1.3.5
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Jamie Winsor
|
|
@@ -9,7 +9,7 @@ authors:
|
|
|
9
9
|
autorequire:
|
|
10
10
|
bindir: bin
|
|
11
11
|
cert_chain: []
|
|
12
|
-
date: 2013-10
|
|
12
|
+
date: 2013-12-10 00:00:00.000000000 Z
|
|
13
13
|
dependencies:
|
|
14
14
|
- !ruby/object:Gem::Dependency
|
|
15
15
|
name: berkshelf
|
|
@@ -63,16 +63,22 @@ dependencies:
|
|
|
63
63
|
name: net-ssh
|
|
64
64
|
requirement: !ruby/object:Gem::Requirement
|
|
65
65
|
requirements:
|
|
66
|
-
- -
|
|
66
|
+
- - '>='
|
|
67
67
|
- !ruby/object:Gem::Version
|
|
68
68
|
version: 2.6.6
|
|
69
|
+
- - <
|
|
70
|
+
- !ruby/object:Gem::Version
|
|
71
|
+
version: 2.8.0
|
|
69
72
|
type: :runtime
|
|
70
73
|
prerelease: false
|
|
71
74
|
version_requirements: !ruby/object:Gem::Requirement
|
|
72
75
|
requirements:
|
|
73
|
-
- -
|
|
76
|
+
- - '>='
|
|
74
77
|
- !ruby/object:Gem::Version
|
|
75
78
|
version: 2.6.6
|
|
79
|
+
- - <
|
|
80
|
+
- !ruby/object:Gem::Version
|
|
81
|
+
version: 2.8.0
|
|
76
82
|
- !ruby/object:Gem::Dependency
|
|
77
83
|
name: net-scp
|
|
78
84
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -200,7 +206,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
200
206
|
version: '0'
|
|
201
207
|
requirements: []
|
|
202
208
|
rubyforge_project:
|
|
203
|
-
rubygems_version: 2.0.
|
|
209
|
+
rubygems_version: 2.0.14
|
|
204
210
|
signing_key:
|
|
205
211
|
specification_version: 4
|
|
206
212
|
summary: A Vagrant plugin to add Berkshelf integration to the Chef provisioners
|