controlrepo 2.0.1 → 2.0.2
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/Gemfile +1 -0
- data/Gemfile.lock +3 -1
- data/README.md +40 -0
- data/controlrepo.gemspec +2 -1
- data/factsets/CentOS-6.6-64.json +342 -0
- data/factsets/CentOS-7.0-64.json +352 -0
- data/factsets/Debian-7.8-64.json +338 -0
- data/factsets/Ubuntu-12.04-32.json +328 -0
- data/factsets/Ubuntu-14.04-64.json +373 -0
- data/factsets/Windows_Server-2008r2-64.json +183 -0
- data/factsets/Windows_Server-2012r2-64.json +164 -0
- data/lib/controlrepo.rb +17 -2
- data/lib/controlrepo/beaker.rb +5 -5
- data/lib/controlrepo/rake_tasks.rb +28 -27
- data/lib/controlrepo/testconfig.rb +23 -15
- data/templates/acceptance_test_spec.rb.erb +1 -1
- data/templates/controlrepo.yaml.erb +38 -0
- data/templates/nodeset.yaml.erb +9 -9
- metadata +24 -2
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: controlrepo
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 2.0.
|
4
|
+
version: 2.0.2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Dylan Ratcliffe
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2015-11-
|
11
|
+
date: 2015-11-20 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: rake
|
@@ -122,6 +122,20 @@ dependencies:
|
|
122
122
|
- - ">="
|
123
123
|
- !ruby/object:Gem::Version
|
124
124
|
version: '0'
|
125
|
+
- !ruby/object:Gem::Dependency
|
126
|
+
name: git
|
127
|
+
requirement: !ruby/object:Gem::Requirement
|
128
|
+
requirements:
|
129
|
+
- - ">="
|
130
|
+
- !ruby/object:Gem::Version
|
131
|
+
version: '0'
|
132
|
+
type: :runtime
|
133
|
+
prerelease: false
|
134
|
+
version_requirements: !ruby/object:Gem::Requirement
|
135
|
+
requirements:
|
136
|
+
- - ">="
|
137
|
+
- !ruby/object:Gem::Version
|
138
|
+
version: '0'
|
125
139
|
description: ''
|
126
140
|
email:
|
127
141
|
- dylan.ratcliffe@puppetlabs.com
|
@@ -135,6 +149,13 @@ files:
|
|
135
149
|
- README.md
|
136
150
|
- Rakefile
|
137
151
|
- controlrepo.gemspec
|
152
|
+
- factsets/CentOS-6.6-64.json
|
153
|
+
- factsets/CentOS-7.0-64.json
|
154
|
+
- factsets/Debian-7.8-64.json
|
155
|
+
- factsets/Ubuntu-12.04-32.json
|
156
|
+
- factsets/Ubuntu-14.04-64.json
|
157
|
+
- factsets/Windows_Server-2008r2-64.json
|
158
|
+
- factsets/Windows_Server-2012r2-64.json
|
138
159
|
- lib/controlrepo.rb
|
139
160
|
- lib/controlrepo/beaker.rb
|
140
161
|
- lib/controlrepo/class.rb
|
@@ -147,6 +168,7 @@ files:
|
|
147
168
|
- templates/Gemfile.erb
|
148
169
|
- templates/Rakefile.erb
|
149
170
|
- templates/acceptance_test_spec.rb.erb
|
171
|
+
- templates/controlrepo.yaml.erb
|
150
172
|
- templates/nodeset.yaml.erb
|
151
173
|
- templates/spec_helper.rb.erb
|
152
174
|
- templates/spec_helper_acceptance.rb.erb
|