vagrant-librarian-chef 0.1.4 → 0.1.5

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: a89e31c138123cff911268f51b0becf4f6e85fc1
4
- data.tar.gz: 7d70dd0e3abf2beceb36f32a157ed7d62c2193d2
3
+ metadata.gz: bd194654aa63d2d223372cc48499cf1a5ba3fe85
4
+ data.tar.gz: 53983efc8afe7cd82a5d898a2595d9de7ca20d75
5
5
  SHA512:
6
- metadata.gz: bf46c83c3ead1229a52d68e60d3623a531ef039a4fc624da2b37ca5b736349b450a1bc64e418d9f3942e3ab1704b813757bcaff8224aa4393ff81f5c14a85662
7
- data.tar.gz: 1fe36730ed152d872bae4e6039085135070d12e3af0adcc659aa1d3bb69bb3e8cdaa6dbe2c56ad42870b6e6c6fd0c6d6e7051bffcf9d3e6a38707d2d6cc6fcf2
6
+ metadata.gz: 6a8ae098b8d6c131266e73e1ae181604b10101ee531c9bd734b06582506107b4303900d4eccb8d2b203ff689e29d10a3f7ca40831212218c9c65710397d9edcf
7
+ data.tar.gz: 605e437728983abc0ceece58e3fbab17feb206075d75897676a63e1a7b82a3c6fb79d82e9317d45e7da818a602af6d96abfdd32c3fea39f23cccd83e91f247dd
data/Gemfile CHANGED
@@ -4,4 +4,5 @@ gemspec
4
4
 
5
5
  group :development do
6
6
  gem "vagrant", github: "mitchellh/vagrant"
7
+ gem "vagrant-vmware-fusion"
7
8
  end
data/Vagrantfile CHANGED
@@ -2,12 +2,21 @@
2
2
  # -*- mode: ruby -*-
3
3
  # vi: set ft=ruby :
4
4
 
5
- Vagrant.require_plugin "vagrant-librarian-chef"
5
+ require "vagrant-vmware-fusion"
6
6
 
7
7
  Vagrant.configure("2") do |config|
8
8
  config.vm.box = "precise64"
9
9
  config.vm.box_url = "http://files.vagrantup.com/precise64.box"
10
10
 
11
+ # To develop against the VMware Fusion provider, you must set an environment variable
12
+ # pointing to the officially installed Vagrant. You must also be running the same version
13
+ # of Ruby.
14
+ #
15
+ # $ VAGRANT_INSTALLER_EMBEDDED_DIR=/Applications/Vagrant/embedded bundle exec vagrant
16
+ config.vm.provider :vmware_fusion do |v, override|
17
+ override.vm.box_url = "http://files.vagrantup.com/precise64_vmware.box"
18
+ end
19
+
11
20
  config.vm.provision :chef_solo do |chef|
12
21
  chef.cookbooks_path = "cookbooks"
13
22
  chef.add_recipe "git"
@@ -8,11 +8,11 @@ module VagrantPlugins
8
8
  def initialize(app, env)
9
9
  @app = app
10
10
  # Config#finalize! SHOULD be called automatically
11
- env[:global_config].librarian_chef.finalize!
11
+ env[:machine].config.librarian_chef.finalize!
12
12
  end
13
13
 
14
14
  def call(env)
15
- config = env[:global_config].librarian_chef
15
+ config = env[:machine].config.librarian_chef
16
16
 
17
17
  project_path = get_project_path(env, config)
18
18
  if project_path
@@ -1,5 +1,5 @@
1
1
  module VagrantPlugins
2
2
  module LibrarianChef
3
- VERSION = "0.1.4"
3
+ VERSION = "0.1.5"
4
4
  end
5
5
  end
metadata CHANGED
@@ -1,69 +1,69 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: vagrant-librarian-chef
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.4
4
+ version: 0.1.5
5
5
  platform: ruby
6
6
  authors:
7
7
  - Jimmy Cuadra
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2013-09-09 00:00:00.000000000 Z
11
+ date: 2014-03-11 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: librarian-chef
15
15
  requirement: !ruby/object:Gem::Requirement
16
16
  requirements:
17
- - - '>='
17
+ - - ">="
18
18
  - !ruby/object:Gem::Version
19
19
  version: '0'
20
20
  type: :runtime
21
21
  prerelease: false
22
22
  version_requirements: !ruby/object:Gem::Requirement
23
23
  requirements:
24
- - - '>='
24
+ - - ">="
25
25
  - !ruby/object:Gem::Version
26
26
  version: '0'
27
27
  - !ruby/object:Gem::Dependency
28
28
  name: bundler
29
29
  requirement: !ruby/object:Gem::Requirement
30
30
  requirements:
31
- - - ~>
31
+ - - "~>"
32
32
  - !ruby/object:Gem::Version
33
33
  version: '1.3'
34
34
  type: :development
35
35
  prerelease: false
36
36
  version_requirements: !ruby/object:Gem::Requirement
37
37
  requirements:
38
- - - ~>
38
+ - - "~>"
39
39
  - !ruby/object:Gem::Version
40
40
  version: '1.3'
41
41
  - !ruby/object:Gem::Dependency
42
42
  name: rake
43
43
  requirement: !ruby/object:Gem::Requirement
44
44
  requirements:
45
- - - '>='
45
+ - - ">="
46
46
  - !ruby/object:Gem::Version
47
47
  version: '0'
48
48
  type: :development
49
49
  prerelease: false
50
50
  version_requirements: !ruby/object:Gem::Requirement
51
51
  requirements:
52
- - - '>='
52
+ - - ">="
53
53
  - !ruby/object:Gem::Version
54
54
  version: '0'
55
55
  - !ruby/object:Gem::Dependency
56
56
  name: rspec
57
57
  requirement: !ruby/object:Gem::Requirement
58
58
  requirements:
59
- - - '>='
59
+ - - ">="
60
60
  - !ruby/object:Gem::Version
61
61
  version: '0'
62
62
  type: :development
63
63
  prerelease: false
64
64
  version_requirements: !ruby/object:Gem::Requirement
65
65
  requirements:
66
- - - '>='
66
+ - - ">="
67
67
  - !ruby/object:Gem::Version
68
68
  version: '0'
69
69
  description: A Vagrant plugin to install Chef cookbooks using Librarian-Chef.
@@ -73,7 +73,7 @@ executables: []
73
73
  extensions: []
74
74
  extra_rdoc_files: []
75
75
  files:
76
- - .gitignore
76
+ - ".gitignore"
77
77
  - Cheffile
78
78
  - Gemfile
79
79
  - LICENSE.txt
@@ -96,19 +96,18 @@ require_paths:
96
96
  - lib
97
97
  required_ruby_version: !ruby/object:Gem::Requirement
98
98
  requirements:
99
- - - '>='
99
+ - - ">="
100
100
  - !ruby/object:Gem::Version
101
101
  version: '0'
102
102
  required_rubygems_version: !ruby/object:Gem::Requirement
103
103
  requirements:
104
- - - '>='
104
+ - - ">="
105
105
  - !ruby/object:Gem::Version
106
106
  version: '0'
107
107
  requirements: []
108
108
  rubyforge_project:
109
- rubygems_version: 2.0.3
109
+ rubygems_version: 2.2.2
110
110
  signing_key:
111
111
  specification_version: 4
112
112
  summary: A Vagrant plugin to install Chef cookbooks using Librarian-Chef.
113
113
  test_files: []
114
- has_rdoc: