vagrant-dsc 1.0.7 → 1.0.8
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/README.md +43 -7
- data/development/Vagrantfile +13 -9
- data/development/manifests/MyWebsite.ps1 +7 -6
- data/development/modules/MyWebapp/DSCResources/SimpleWebsite/SimpleWebsite.schema.psm1 +34 -48
- data/development/website/index.html +2 -1
- data/lib/vagrant-dsc/provisioner.rb +5 -1
- data/lib/vagrant-dsc/version.rb +1 -1
- data/spec/provisioner/provisioner_spec.rb +8 -8
- data/vagrant-dsc.gemspec +7 -7
- metadata +16 -71
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 1d1c1a1d0ef61204a99cb1ec1fbf7c6db9bdb29a
|
4
|
+
data.tar.gz: f9151a44b34075f8a5884ad6ef2317253e910b47
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 8af8d5c182bc7c6f811782cbb44384afde9b1e963dcbf65b0cc8109bd8184f76eb873c7f89cb17b6bf296b4b4a8741a0be20ace4c82a25089db0d9e4b4fee5ef
|
7
|
+
data.tar.gz: cb90c6b1e8116ecae50066a80c1e6a421d170cbd4f4e0673e607552b460801582ec21960f59495e54a76903da8df6d2611866e380a308c83e8c9e764491e10e3
|
data/README.md
CHANGED
@@ -22,7 +22,7 @@ In your Vagrantfile, add the following plugin and configure to your needs:
|
|
22
22
|
|
23
23
|
```ruby
|
24
24
|
config.vm.provision "dsc" do |dsc|
|
25
|
-
|
25
|
+
|
26
26
|
# The path relative to `dsc.manifests_path` pointing to the Configuration file
|
27
27
|
dsc.configuration_file = "MyWebsite.ps1"
|
28
28
|
|
@@ -45,6 +45,9 @@ In your Vagrantfile, add the following plugin and configure to your needs:
|
|
45
45
|
# Relative path to a folder containing a pre-generated MOF file.
|
46
46
|
#
|
47
47
|
# Path is relative to the folder containing the Vagrantfile.
|
48
|
+
# When set, `configuration_name`, `configuration_data_file_path`,
|
49
|
+
# `configuration_file_path`, `configuration_data_file` and
|
50
|
+
# `manifests_path` are ignored.
|
48
51
|
dsc.mof_path = "mof_output"
|
49
52
|
|
50
53
|
# Relative path to the folder containing the root Configuration manifest file.
|
@@ -72,9 +75,17 @@ In your Vagrantfile, add the following plugin and configure to your needs:
|
|
72
75
|
dsc.temp_dir = "/tmp/vagrant-dsc"
|
73
76
|
end
|
74
77
|
```
|
78
|
+
|
79
|
+
### Specifying a MOF file
|
80
|
+
|
81
|
+
If `mof_path` is set then `configuration_name`, `configuration_data_file_path`, `configuration_file_path`, `configuration_data_file` and `manifests_path` are all not required, and will be ignored. Once you have a MOF file, you have everything you need (except possibly any paths to modules i.e. `module_paths`) to execute DSC
|
82
|
+
|
83
|
+
If you don't know what a MOF file is, you probably don't need it and can safely ignore this setting.
|
84
|
+
Vagrant DSC will create and manage it for you automatically.
|
85
|
+
|
75
86
|
## Example
|
76
87
|
|
77
|
-
There is a [sample](https://github.com/mefellows/vagrant-dsc/tree/master/development) Vagrant setup used for development of this plugin.
|
88
|
+
There is a [sample](https://github.com/mefellows/vagrant-dsc/tree/master/development) Vagrant setup used for development of this plugin.
|
78
89
|
This is a great real-life example to get you on your way.
|
79
90
|
|
80
91
|
## Creating Windows Vagrant boxes
|
@@ -94,7 +105,7 @@ The plugin works on older platforms that have a later version of .NET (4.5) and
|
|
94
105
|
|
95
106
|
As a general guide, configuring your Windows Server
|
96
107
|
|
97
|
-
From the [DSC Book](https://
|
108
|
+
From the [DSC Book](https://www.penflip.com/powershellorg/the-dsc-book):
|
98
109
|
|
99
110
|
> **DSC Overview and Requirements**
|
100
111
|
> Desired State Configuration (DSC) was first introduced as part of Windows Management Framework (WMF) 4.0, which is preinstalled in Windows 8.1 and Windows Server 2012 R2, and is available for Windows 7, Windows Server 2008 R2, and Windows Server 2012. Because Windows 8.1 is a free upgrade to Windows 8, WMF 4 is not available for Windows 8.
|
@@ -107,10 +118,35 @@ We may consider automatically installing and configuring DSC in a future release
|
|
107
118
|
|
108
119
|
```vagrant plugin uninstall vagrant-dsc```
|
109
120
|
|
121
|
+
## Development
|
122
|
+
|
123
|
+
Before getting started, read the Vagrant plugin [development basics](https://docs.vagrantup.com/v2/plugins/development-basics.html) and [packaging](https://docs.vagrantup.com/v2/plugins/packaging.html] documentation.
|
124
|
+
|
125
|
+
You will need Ruby 1.9.3+ and Bundler installed before proceeding.
|
126
|
+
|
127
|
+
```
|
128
|
+
git clone git@github.com:mefellows/vagrant-dsc.git
|
129
|
+
cd vagrant-dsc
|
130
|
+
bundle install
|
131
|
+
```
|
132
|
+
|
133
|
+
Run tests:
|
134
|
+
```
|
135
|
+
bundle exec rake spec
|
136
|
+
```
|
137
|
+
|
138
|
+
Run Vagrant in context of current vagrant-dsc plugin:
|
139
|
+
```
|
140
|
+
cd <directory>
|
141
|
+
bundle exec vagrant up
|
142
|
+
```
|
143
|
+
|
144
|
+
There is a test Vagrant DSC setup in `./development` that is a good example of a simple acceptance test.
|
145
|
+
|
110
146
|
## Contributing
|
111
147
|
|
112
148
|
1. Fork it ( https://github.com/[my-github-username]/vagrant-dsc/fork )
|
113
|
-
|
114
|
-
|
115
|
-
|
116
|
-
|
149
|
+
1. Create your feature branch (`git checkout -b my-new-feature`)
|
150
|
+
1. Commit your changes, including relevant tests (`git commit -am 'Add some feature'`)
|
151
|
+
1. Squash commits & push to the branch (`git push origin my-new-feature`)
|
152
|
+
1. Create a new Pull Request
|
data/development/Vagrantfile
CHANGED
@@ -2,11 +2,8 @@
|
|
2
2
|
# vi: set ft=ruby :
|
3
3
|
|
4
4
|
$shell_script = <<SCRIPT
|
5
|
-
|
6
|
-
|
7
|
-
(New-Object System.Net.WebClient).DownloadFile('https://gallery.technet.microsoft.com/scriptcenter/xWebAdministration-Module-3c8bb6be/file/131367/3/xWebAdministration_1.3.2.zip','c:\\xwebadmin.zip')
|
8
|
-
choco install 7zip
|
9
|
-
& 'C:\\Program Files\\7-Zip\\7z.exe' x -y C:\\xwebadmin.zip -o'C:\\Program Files\\WindowsPowerShell\\Modules'
|
5
|
+
choco install seek-dsc -y
|
6
|
+
Install-WindowsFeature Web-Server
|
10
7
|
Get-DSCResource
|
11
8
|
SCRIPT
|
12
9
|
|
@@ -20,15 +17,22 @@ Vagrant.configure(VAGRANTFILE_API_VERSION) do |config|
|
|
20
17
|
|
21
18
|
# Every Vagrant virtual environment requires a box to build off of.
|
22
19
|
config.vm.box = "mfellows/windows2012r2"
|
23
|
-
config.vm.box_version = "1.0.
|
20
|
+
config.vm.box_version = "1.0.0"
|
24
21
|
|
22
|
+
|
23
|
+
hostname = "vagrantdsc.local"
|
24
|
+
ip_address = "10.0.0.30"
|
25
25
|
config.vm.guest = :windows
|
26
26
|
config.vm.communicator = "winrm"
|
27
|
-
|
28
27
|
config.vm.network :forwarded_port, guest: 5985, host: 5985, id: "winrm", auto_correct: true
|
29
28
|
config.vm.network :forwarded_port, guest: 80, host: 8000, id: "web" # Port forward for IIS
|
30
29
|
config.vm.network :forwarded_port, guest: 443, host: 8443, id: "ssl" # Port forward for SSL IIS
|
31
30
|
config.vm.network :forwarded_port, guest: 22, host: 9222, id: "ssh" # Port forward for SSL IIS
|
31
|
+
config.vm.network "private_network", ip: ip_address
|
32
|
+
|
33
|
+
if Vagrant.has_plugin?("vagrant-multi-hostsupdater")
|
34
|
+
config.multihostsupdater.aliases = {ip_address => [hostname]}
|
35
|
+
end
|
32
36
|
|
33
37
|
config.vm.provider "virtualbox" do |v|
|
34
38
|
v.gui = true
|
@@ -38,7 +42,7 @@ Vagrant.configure(VAGRANTFILE_API_VERSION) do |config|
|
|
38
42
|
config.vm.provision "shell", inline: $shell_script
|
39
43
|
|
40
44
|
# Upload Website
|
41
|
-
config.vm.provision "file", source: "website", destination: "c:\\
|
45
|
+
config.vm.provision "file", source: "website", destination: "c:\\MyWebApp"
|
42
46
|
|
43
47
|
# Run DSC
|
44
48
|
config.vm.provision "dsc" do |dsc|
|
@@ -75,7 +79,7 @@ Vagrant.configure(VAGRANTFILE_API_VERSION) do |config|
|
|
75
79
|
# Commandline arguments to the Configuration run
|
76
80
|
#
|
77
81
|
# Set of Parameters to pass to the DSC Configuration.
|
78
|
-
dsc.configuration_params = {"-MachineName" => "localhost"}
|
82
|
+
dsc.configuration_params = {"-MachineName" => "localhost", "-HostName" => "#{hostname}"}
|
79
83
|
|
80
84
|
# The type of synced folders to use when sharing the data
|
81
85
|
# required for the provisioner to work properly.
|
@@ -1,6 +1,6 @@
|
|
1
1
|
Configuration MyWebsite
|
2
2
|
{
|
3
|
-
param ($MachineName)
|
3
|
+
param ($MachineName, $HostName)
|
4
4
|
|
5
5
|
Import-DscResource -Module MyWebapp
|
6
6
|
Import-DscResource -Module cNetworking
|
@@ -17,7 +17,7 @@ Configuration MyWebsite
|
|
17
17
|
{
|
18
18
|
Ensure = "Present"
|
19
19
|
Name = "Web-Mgmt-Tools"
|
20
|
-
}
|
20
|
+
}
|
21
21
|
|
22
22
|
cFirewallRule webFirewall
|
23
23
|
{
|
@@ -26,13 +26,14 @@ Configuration MyWebsite
|
|
26
26
|
LocalPort = "80"
|
27
27
|
Protocol = "TCP"
|
28
28
|
Action = "Allow"
|
29
|
-
Ensure = "Present"
|
29
|
+
Ensure = "Present"
|
30
30
|
}
|
31
31
|
|
32
32
|
SimpleWebsite sWebsite
|
33
33
|
{
|
34
|
-
WebAppPath = "c:\
|
34
|
+
WebAppPath = "c:\MyWebApp"
|
35
35
|
DependsOn = '[cWebsite]DefaultWebsite'
|
36
|
-
|
36
|
+
HostName = $HostName
|
37
|
+
}
|
37
38
|
}
|
38
|
-
}
|
39
|
+
}
|
@@ -1,60 +1,46 @@
|
|
1
|
-
|
1
|
+
Configuration SimpleWebsite
|
2
2
|
{
|
3
3
|
param
|
4
4
|
(
|
5
|
-
[String]$WebAppPath
|
6
|
-
[String]$
|
5
|
+
[String]$WebAppPath = "c:\myWebApp",
|
6
|
+
[String]$WebSiteName = "MyWebApp",
|
7
|
+
[String]$HostNameSuffix = "local",
|
8
|
+
[String]$HostName = "vagrantdsc.${HostNameSuffix}",
|
9
|
+
[String]$ApiAppPoolName = "MyWebAppPool",
|
7
10
|
[HashTable]$AuthenticationInfo = @{Anonymous = "true"; Basic = "false"; Digest = "false"; Windows = "false"}
|
8
11
|
)
|
9
12
|
|
10
|
-
|
11
|
-
Import-DscResource -Module
|
13
|
+
Import-DscResource -Module cWebAdministration
|
14
|
+
Import-DscResource -Module cNetworking
|
12
15
|
|
13
|
-
|
14
|
-
|
15
|
-
{
|
16
|
-
Ensure = "Present"
|
17
|
-
Name = "Default Web Site"
|
18
|
-
State = "Stopped"
|
19
|
-
PhysicalPath = "C:\inetpub\wwwroot"
|
20
|
-
DependsOn = "[File]websiteIndex"
|
21
|
-
}
|
22
|
-
|
23
|
-
# Create a Web Application Pool
|
24
|
-
xWebAppPool NewWebAppPool
|
25
|
-
{
|
26
|
-
Name = "${WebAppName}AppPool"
|
27
|
-
Ensure = "Present"
|
28
|
-
State = "Started"
|
29
|
-
}
|
30
|
-
|
31
|
-
#Create a New Website with Port
|
32
|
-
xWebSite NewWebSite
|
33
|
-
{
|
34
|
-
Name = $WebAppName
|
35
|
-
Ensure = "Present"
|
36
|
-
BindingInfo = MSFT_xWebBindingInformation
|
37
|
-
{
|
38
|
-
Port = 80
|
39
|
-
}
|
40
|
-
PhysicalPath = $WebAppPath
|
41
|
-
State = "Started"
|
42
|
-
DependsOn = @("[xWebAppPool]NewWebAppPool")
|
43
|
-
}
|
44
|
-
|
45
|
-
File websiteIndex
|
16
|
+
# Stop the default website
|
17
|
+
cWebsite DefaultSite
|
46
18
|
{
|
47
|
-
|
48
|
-
|
49
|
-
|
50
|
-
|
51
|
-
DependsOn = '[File]website'
|
19
|
+
Ensure = "Absent"
|
20
|
+
Name = "Default Web Site"
|
21
|
+
State = "Stopped"
|
22
|
+
PhysicalPath = "C:\inetpub\wwwroot"
|
52
23
|
}
|
53
24
|
|
54
|
-
|
25
|
+
cWebsite UrlSvcWebsite
|
55
26
|
{
|
56
|
-
|
57
|
-
|
58
|
-
|
27
|
+
Ensure = "Present"
|
28
|
+
Name = $WebSiteName
|
29
|
+
BindingInfo = @(SEEK_cWebBindingInformation
|
30
|
+
{
|
31
|
+
Protocol = "http"
|
32
|
+
Port = 80
|
33
|
+
IPAddress = "*"
|
34
|
+
})
|
35
|
+
AuthenticationInfo = SEEK_cWebAuthenticationInformation { Anonymous = "true" }
|
36
|
+
HostFileInfo = @(SEEK_cHostEntryFileInformation
|
37
|
+
{
|
38
|
+
RequireHostFileEntry = $True
|
39
|
+
HostEntryName = $HostName
|
40
|
+
HostIpAddress = "10.0.0.30"
|
41
|
+
})
|
42
|
+
PhysicalPath = $WebAppPath
|
43
|
+
State = "Started"
|
44
|
+
DependsOn = @("[cWebsite]DefaultSite")
|
59
45
|
}
|
60
|
-
}
|
46
|
+
}
|
@@ -1 +1,2 @@
|
|
1
|
-
Hello from Vagrant DSC
|
1
|
+
<h1>Hello from Vagrant DSC!</h1>
|
2
|
+
<img src="http://www.drodd.com/images10/funny-cat-gifs17.gif" />
|
@@ -10,7 +10,7 @@ module VagrantPlugins
|
|
10
10
|
end
|
11
11
|
class DSCUnsupportedOperation < DSCError
|
12
12
|
error_key(:unsupported_operation)
|
13
|
-
end
|
13
|
+
end
|
14
14
|
|
15
15
|
# DSC Provisioner Plugin.
|
16
16
|
#
|
@@ -219,6 +219,10 @@ module VagrantPlugins
|
|
219
219
|
# on the guest machine.
|
220
220
|
def verify_shared_folders(folders)
|
221
221
|
folders.each do |folder|
|
222
|
+
# Warm up PoSH communicator for new instances - any stderr results
|
223
|
+
# in failure: https://github.com/mefellows/vagrant-dsc/issues/21
|
224
|
+
@machine.communicate.test("test -d #{folder}", sudo: true)
|
225
|
+
|
222
226
|
@logger.info("Checking for shared folder: #{folder}")
|
223
227
|
if !@machine.communicate.test("test -d #{folder}", sudo: true)
|
224
228
|
raise DSCError, :missing_shared_folders
|
data/lib/vagrant-dsc/version.rb
CHANGED
@@ -89,7 +89,7 @@ describe VagrantPlugins::DSC::Provisioner do
|
|
89
89
|
it "should raise error if folders not shared" do
|
90
90
|
root_config.synced_folder_type = "nfs"
|
91
91
|
|
92
|
-
expect(communicator).to receive(:test).with("test -d foo/modules", {:sudo=>true}).and_return(false)
|
92
|
+
expect(communicator).to receive(:test).twice.with("test -d foo/modules", {:sudo=>true}).and_return(false)
|
93
93
|
|
94
94
|
subject.configure(root_config)
|
95
95
|
|
@@ -100,9 +100,9 @@ describe VagrantPlugins::DSC::Provisioner do
|
|
100
100
|
it "should ensure shared folders are properly shared" do
|
101
101
|
root_config.synced_folder_type = "nfs"
|
102
102
|
|
103
|
-
expect(communicator).to receive(:test).with("test -d foo/modules", {:sudo=>true}).and_return(true)
|
104
|
-
expect(communicator).to receive(:test).with("test -d foo/modules2", {:sudo=>true}).and_return(true)
|
105
|
-
expect(communicator).to receive(:test).with("test -d manifests", {:sudo=>true}).and_return(true)
|
103
|
+
expect(communicator).to receive(:test).twice.with("test -d foo/modules", {:sudo=>true}).and_return(true)
|
104
|
+
expect(communicator).to receive(:test).twice.with("test -d foo/modules2", {:sudo=>true}).and_return(true)
|
105
|
+
expect(communicator).to receive(:test).twice.with("test -d manifests", {:sudo=>true}).and_return(true)
|
106
106
|
|
107
107
|
subject.configure(root_config)
|
108
108
|
|
@@ -183,12 +183,12 @@ describe VagrantPlugins::DSC::Provisioner do
|
|
183
183
|
expect(subject).to receive(:run_dsc_apply)
|
184
184
|
|
185
185
|
subject.provision
|
186
|
-
end
|
186
|
+
end
|
187
187
|
|
188
188
|
it "should ensure shared folders are properly configured" do
|
189
189
|
allow(communicator).to receive(:test)
|
190
190
|
allow(communicator).to receive(:sudo)
|
191
|
-
allow(communicator).to receive(:upload)
|
191
|
+
allow(communicator).to receive(:upload)
|
192
192
|
allow(subject).to receive(:verify_dsc).and_return(true)
|
193
193
|
allow(subject).to receive(:run_dsc_apply).and_return(true)
|
194
194
|
allow(guest).to receive(:capability?)
|
@@ -225,7 +225,7 @@ describe VagrantPlugins::DSC::Provisioner do
|
|
225
225
|
|
226
226
|
it "should raise an error if Powershell version is invalid" do
|
227
227
|
|
228
|
-
end
|
228
|
+
end
|
229
229
|
end
|
230
230
|
|
231
231
|
describe "DSC runner script" do
|
@@ -288,7 +288,7 @@ del $StagingPath\\*.mof"
|
|
288
288
|
it "should generate a valid powershell command" do
|
289
289
|
root_config.manifests_path = "../manifests"
|
290
290
|
root_config.configuration_file = configuration_file
|
291
|
-
|
291
|
+
|
292
292
|
script = subject.generate_dsc_runner_script
|
293
293
|
expect_script = "#
|
294
294
|
# DSC Runner.
|
data/vagrant-dsc.gemspec
CHANGED
@@ -18,11 +18,11 @@ Gem::Specification.new do |spec|
|
|
18
18
|
spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
|
19
19
|
spec.require_paths = ["lib"]
|
20
20
|
|
21
|
-
spec.add_development_dependency "rake"
|
22
|
-
spec.add_development_dependency "bundler", "~> 1.6", '>= 1.6.0'
|
23
|
-
spec.add_development_dependency "coveralls"
|
24
|
-
spec.add_development_dependency "rspec-core"
|
25
|
-
spec.add_development_dependency "rspec-expectations"
|
26
|
-
spec.add_development_dependency "rspec-mocks"
|
27
|
-
spec.add_development_dependency "rspec-its"
|
21
|
+
spec.add_development_dependency "rake"#, '~> 10.3', '>= 10.3.0'
|
22
|
+
# spec.add_development_dependency "bundler", "~> 1.6", '>= 1.6.0'
|
23
|
+
spec.add_development_dependency "coveralls"#, "~> 0.7.1", '>= 0.7.1'
|
24
|
+
spec.add_development_dependency "rspec-core"#, '~> 3.1', '>= 3.1.0'
|
25
|
+
spec.add_development_dependency "rspec-expectations"#, '~> 3.1', '>= 3.1.0'
|
26
|
+
spec.add_development_dependency "rspec-mocks" #, '~> 3.1', '>= 3.1.0'
|
27
|
+
spec.add_development_dependency "rspec-its" #, "~> 1.0.1", '>= 1.0.0'
|
28
28
|
end
|
metadata
CHANGED
@@ -1,155 +1,99 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: vagrant-dsc
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.0.
|
4
|
+
version: 1.0.8
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Matt Fellows
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2016-06-27 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: rake
|
15
15
|
requirement: !ruby/object:Gem::Requirement
|
16
16
|
requirements:
|
17
|
-
- - ~>
|
18
|
-
- !ruby/object:Gem::Version
|
19
|
-
version: '10.3'
|
20
17
|
- - '>='
|
21
18
|
- !ruby/object:Gem::Version
|
22
|
-
version:
|
19
|
+
version: '0'
|
23
20
|
type: :development
|
24
21
|
prerelease: false
|
25
22
|
version_requirements: !ruby/object:Gem::Requirement
|
26
23
|
requirements:
|
27
|
-
- - ~>
|
28
|
-
- !ruby/object:Gem::Version
|
29
|
-
version: '10.3'
|
30
24
|
- - '>='
|
31
25
|
- !ruby/object:Gem::Version
|
32
|
-
version:
|
33
|
-
- !ruby/object:Gem::Dependency
|
34
|
-
name: bundler
|
35
|
-
requirement: !ruby/object:Gem::Requirement
|
36
|
-
requirements:
|
37
|
-
- - ~>
|
38
|
-
- !ruby/object:Gem::Version
|
39
|
-
version: '1.6'
|
40
|
-
- - '>='
|
41
|
-
- !ruby/object:Gem::Version
|
42
|
-
version: 1.6.0
|
43
|
-
type: :development
|
44
|
-
prerelease: false
|
45
|
-
version_requirements: !ruby/object:Gem::Requirement
|
46
|
-
requirements:
|
47
|
-
- - ~>
|
48
|
-
- !ruby/object:Gem::Version
|
49
|
-
version: '1.6'
|
50
|
-
- - '>='
|
51
|
-
- !ruby/object:Gem::Version
|
52
|
-
version: 1.6.0
|
26
|
+
version: '0'
|
53
27
|
- !ruby/object:Gem::Dependency
|
54
28
|
name: coveralls
|
55
29
|
requirement: !ruby/object:Gem::Requirement
|
56
30
|
requirements:
|
57
|
-
- - ~>
|
58
|
-
- !ruby/object:Gem::Version
|
59
|
-
version: 0.7.1
|
60
31
|
- - '>='
|
61
32
|
- !ruby/object:Gem::Version
|
62
|
-
version: 0
|
33
|
+
version: '0'
|
63
34
|
type: :development
|
64
35
|
prerelease: false
|
65
36
|
version_requirements: !ruby/object:Gem::Requirement
|
66
37
|
requirements:
|
67
|
-
- - ~>
|
68
|
-
- !ruby/object:Gem::Version
|
69
|
-
version: 0.7.1
|
70
38
|
- - '>='
|
71
39
|
- !ruby/object:Gem::Version
|
72
|
-
version: 0
|
40
|
+
version: '0'
|
73
41
|
- !ruby/object:Gem::Dependency
|
74
42
|
name: rspec-core
|
75
43
|
requirement: !ruby/object:Gem::Requirement
|
76
44
|
requirements:
|
77
|
-
- - ~>
|
78
|
-
- !ruby/object:Gem::Version
|
79
|
-
version: '3.1'
|
80
45
|
- - '>='
|
81
46
|
- !ruby/object:Gem::Version
|
82
|
-
version:
|
47
|
+
version: '0'
|
83
48
|
type: :development
|
84
49
|
prerelease: false
|
85
50
|
version_requirements: !ruby/object:Gem::Requirement
|
86
51
|
requirements:
|
87
|
-
- - ~>
|
88
|
-
- !ruby/object:Gem::Version
|
89
|
-
version: '3.1'
|
90
52
|
- - '>='
|
91
53
|
- !ruby/object:Gem::Version
|
92
|
-
version:
|
54
|
+
version: '0'
|
93
55
|
- !ruby/object:Gem::Dependency
|
94
56
|
name: rspec-expectations
|
95
57
|
requirement: !ruby/object:Gem::Requirement
|
96
58
|
requirements:
|
97
|
-
- - ~>
|
98
|
-
- !ruby/object:Gem::Version
|
99
|
-
version: '3.1'
|
100
59
|
- - '>='
|
101
60
|
- !ruby/object:Gem::Version
|
102
|
-
version:
|
61
|
+
version: '0'
|
103
62
|
type: :development
|
104
63
|
prerelease: false
|
105
64
|
version_requirements: !ruby/object:Gem::Requirement
|
106
65
|
requirements:
|
107
|
-
- - ~>
|
108
|
-
- !ruby/object:Gem::Version
|
109
|
-
version: '3.1'
|
110
66
|
- - '>='
|
111
67
|
- !ruby/object:Gem::Version
|
112
|
-
version:
|
68
|
+
version: '0'
|
113
69
|
- !ruby/object:Gem::Dependency
|
114
70
|
name: rspec-mocks
|
115
71
|
requirement: !ruby/object:Gem::Requirement
|
116
72
|
requirements:
|
117
|
-
- - ~>
|
118
|
-
- !ruby/object:Gem::Version
|
119
|
-
version: '3.1'
|
120
73
|
- - '>='
|
121
74
|
- !ruby/object:Gem::Version
|
122
|
-
version:
|
75
|
+
version: '0'
|
123
76
|
type: :development
|
124
77
|
prerelease: false
|
125
78
|
version_requirements: !ruby/object:Gem::Requirement
|
126
79
|
requirements:
|
127
|
-
- - ~>
|
128
|
-
- !ruby/object:Gem::Version
|
129
|
-
version: '3.1'
|
130
80
|
- - '>='
|
131
81
|
- !ruby/object:Gem::Version
|
132
|
-
version:
|
82
|
+
version: '0'
|
133
83
|
- !ruby/object:Gem::Dependency
|
134
84
|
name: rspec-its
|
135
85
|
requirement: !ruby/object:Gem::Requirement
|
136
86
|
requirements:
|
137
|
-
- - ~>
|
138
|
-
- !ruby/object:Gem::Version
|
139
|
-
version: 1.0.1
|
140
87
|
- - '>='
|
141
88
|
- !ruby/object:Gem::Version
|
142
|
-
version:
|
89
|
+
version: '0'
|
143
90
|
type: :development
|
144
91
|
prerelease: false
|
145
92
|
version_requirements: !ruby/object:Gem::Requirement
|
146
93
|
requirements:
|
147
|
-
- - ~>
|
148
|
-
- !ruby/object:Gem::Version
|
149
|
-
version: 1.0.1
|
150
94
|
- - '>='
|
151
95
|
- !ruby/object:Gem::Version
|
152
|
-
version:
|
96
|
+
version: '0'
|
153
97
|
description: Desired State Configuration (http://technet.microsoft.com/en-au/library/dn249912.aspx)
|
154
98
|
provisioning plugin for Vagrant.
|
155
99
|
email:
|
@@ -204,7 +148,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
204
148
|
version: '0'
|
205
149
|
requirements: []
|
206
150
|
rubyforge_project:
|
207
|
-
rubygems_version: 2.
|
151
|
+
rubygems_version: 2.0.14
|
208
152
|
signing_key:
|
209
153
|
specification_version: 4
|
210
154
|
summary: DSC Provisioner for Vagrant
|
@@ -213,3 +157,4 @@ test_files:
|
|
213
157
|
- spec/provisioner/config_spec.rb
|
214
158
|
- spec/provisioner/provisioner_spec.rb
|
215
159
|
- spec/spec_helper.rb
|
160
|
+
has_rdoc:
|