madscience 0.0.14 → 0.0.15
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 +7 -0
- data/README.md +21 -24
- data/lib/madscience/version.rb +1 -1
- data/madscience.gemspec +1 -1
- data/site-cookbooks/madscience-vagrant-cookbook/recipes/default.rb +2 -1
- metadata +41 -67
checksums.yaml
ADDED
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
---
|
|
2
|
+
SHA1:
|
|
3
|
+
metadata.gz: 546688b06718f58bf9f0e1313dc47bef432d6da5
|
|
4
|
+
data.tar.gz: 405e0c4d67e4c7aa82f1ef018b7440179b29648a
|
|
5
|
+
SHA512:
|
|
6
|
+
metadata.gz: 7a6ebb01e940f91fcaf623745e308c55414c88c6cd57e9d72dd3ac02bd80974b20cefd4fe75ba5f0dcbcc42032023e57ffe70ca42a88390eac13b6eb7ff97548
|
|
7
|
+
data.tar.gz: 94cdbb5f1647adee49fa9ddb658f1b37ac3b9df72025aa9a252fc2df3c47ec06a96c06b6136e5027dafef753bded735537d9c7053d9b941c4c42c671724f78c0
|
data/README.md
CHANGED
|
@@ -1,40 +1,37 @@
|
|
|
1
1
|
# MadScience
|
|
2
2
|
|
|
3
|
-
The MadScience stack helps deploy your Rails application
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
.deploy_credentials subdirectory.
|
|
3
|
+
The MadScience stack helps deploy your Rails application from a Mac or Linux
|
|
4
|
+
development machine to a new local VM and a matching production environment.
|
|
5
|
+
It uses Vagrant, Chef and Capistrano. It stores deployment credentials under
|
|
6
|
+
your home directory in the .deploy_credentials subdirectory.
|
|
7
7
|
|
|
8
|
-
The Mad Science Stack is based on a class called
|
|
9
|
-
(http://
|
|
8
|
+
The Mad Science Stack is based on a class called Rails Deploy In An Hour
|
|
9
|
+
(http://rails-deploy-in-an-hour.com), a paid product. This code is MIT
|
|
10
|
+
licensed, however, and can be used according to that license.
|
|
10
11
|
|
|
11
12
|
Each version of the Mad Science Stack is tested with a specific version of
|
|
12
13
|
each tool. The current version of the Mad Science Stack, Version 0.0.1,
|
|
13
|
-
installs and uses
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
Capistrano: 3.2.1
|
|
22
|
-
Capistrano-Rails: 1.1.1
|
|
23
|
-
Capistrano-Bundler: 1.1.2
|
|
24
|
-
Capistrano-RVM: 0.1.1
|
|
25
|
-
SSHKit: 1.5.1
|
|
14
|
+
installs and uses other specific tool versions, such as:
|
|
15
|
+
|
|
16
|
+
* Chef: 12.0.3
|
|
17
|
+
* Librarian-Chef: 0.0.3
|
|
18
|
+
* Knife-Solo: 0.4.2
|
|
19
|
+
* Vagrant: 1.7.1
|
|
20
|
+
* Vagrant-Omnibus: 1.4.2
|
|
21
|
+
* VirtualBox: 4.3.12
|
|
26
22
|
|
|
27
23
|
Note that this doesn't include the tools that are (usually) deployed to like
|
|
28
24
|
NGinX, Ubuntu Linux and so on -- those depend on the deploy repository.
|
|
29
25
|
|
|
30
26
|
Not all of this software is used by every deploy repository. For instance,
|
|
31
27
|
Capistrano can be optional. But if you use it with a given version of
|
|
32
|
-
MadScience, that's the version
|
|
28
|
+
MadScience, that's the version we've tested with.
|
|
29
|
+
|
|
30
|
+
The MadScience stack also assumes you have these installed:
|
|
33
31
|
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
A git repo to deploy, unless you just want the sample app
|
|
32
|
+
* Bundler and RubyGems (some recent version)
|
|
33
|
+
* SSH
|
|
34
|
+
* A git repo to deploy, unless you just want the sample app
|
|
38
35
|
|
|
39
36
|
A deploy repo will also use a number of specific gem and cookbook versions, of
|
|
40
37
|
course.
|
data/lib/madscience/version.rb
CHANGED
data/madscience.gemspec
CHANGED
|
@@ -29,7 +29,7 @@ DESC
|
|
|
29
29
|
|
|
30
30
|
spec.add_runtime_dependency 'knife-solo', '0.4.2'
|
|
31
31
|
spec.add_runtime_dependency 'librarian-chef', '0.0.3'
|
|
32
|
-
spec.add_runtime_dependency 'chef', '
|
|
32
|
+
spec.add_runtime_dependency 'chef', '12.0.3'
|
|
33
33
|
spec.add_runtime_dependency 'capistrano', '3.2.1'
|
|
34
34
|
spec.add_runtime_dependency 'capistrano-rails', '1.1.1'
|
|
35
35
|
spec.add_runtime_dependency 'capistrano-bundler', '1.1.2'
|
|
@@ -13,7 +13,7 @@
|
|
|
13
13
|
# attributes in an attributes file, like the one
|
|
14
14
|
# in vagrant-cookbook/attributes/default.rb.
|
|
15
15
|
node.default['vagrant']['version'] = '1.7.1'
|
|
16
|
-
node.default['vagrant']['plugins'] = [ 'vagrant-omnibus', 'vagrant-librarian-chef', 'vagrant-aws', 'vagrant-digitalocean', 'vagrant-linode' ]
|
|
16
|
+
node.default['vagrant']['plugins'] = [ 'vagrant-omnibus', 'vagrant-librarian-chef', 'vagrant-aws', 'vagrant-digitalocean', 'vagrant-linode', 'vagrant-capistrano' ]
|
|
17
17
|
|
|
18
18
|
case node['platform_family']
|
|
19
19
|
when 'fedora'
|
|
@@ -100,5 +100,6 @@ end
|
|
|
100
100
|
file File.join(creds_dir, "authorized_keys") do
|
|
101
101
|
user user
|
|
102
102
|
action :create_if_missing
|
|
103
|
+
manage_symlink_source true
|
|
103
104
|
content { File.read(File.join(creds_dir, "id_rsa_provisioning_4096.pub")) }
|
|
104
105
|
end
|
metadata
CHANGED
|
@@ -1,20 +1,18 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: madscience
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.0.
|
|
5
|
-
prerelease:
|
|
4
|
+
version: 0.0.15
|
|
6
5
|
platform: ruby
|
|
7
6
|
authors:
|
|
8
7
|
- Noah Gibbs
|
|
9
8
|
autorequire:
|
|
10
9
|
bindir: bin
|
|
11
10
|
cert_chain: []
|
|
12
|
-
date: 2015-02
|
|
11
|
+
date: 2015-03-02 00:00:00.000000000 Z
|
|
13
12
|
dependencies:
|
|
14
13
|
- !ruby/object:Gem::Dependency
|
|
15
14
|
name: bundler
|
|
16
15
|
requirement: !ruby/object:Gem::Requirement
|
|
17
|
-
none: false
|
|
18
16
|
requirements:
|
|
19
17
|
- - ~>
|
|
20
18
|
- !ruby/object:Gem::Version
|
|
@@ -22,7 +20,6 @@ dependencies:
|
|
|
22
20
|
type: :runtime
|
|
23
21
|
prerelease: false
|
|
24
22
|
version_requirements: !ruby/object:Gem::Requirement
|
|
25
|
-
none: false
|
|
26
23
|
requirements:
|
|
27
24
|
- - ~>
|
|
28
25
|
- !ruby/object:Gem::Version
|
|
@@ -30,7 +27,6 @@ dependencies:
|
|
|
30
27
|
- !ruby/object:Gem::Dependency
|
|
31
28
|
name: knife-solo
|
|
32
29
|
requirement: !ruby/object:Gem::Requirement
|
|
33
|
-
none: false
|
|
34
30
|
requirements:
|
|
35
31
|
- - '='
|
|
36
32
|
- !ruby/object:Gem::Version
|
|
@@ -38,7 +34,6 @@ dependencies:
|
|
|
38
34
|
type: :runtime
|
|
39
35
|
prerelease: false
|
|
40
36
|
version_requirements: !ruby/object:Gem::Requirement
|
|
41
|
-
none: false
|
|
42
37
|
requirements:
|
|
43
38
|
- - '='
|
|
44
39
|
- !ruby/object:Gem::Version
|
|
@@ -46,7 +41,6 @@ dependencies:
|
|
|
46
41
|
- !ruby/object:Gem::Dependency
|
|
47
42
|
name: librarian-chef
|
|
48
43
|
requirement: !ruby/object:Gem::Requirement
|
|
49
|
-
none: false
|
|
50
44
|
requirements:
|
|
51
45
|
- - '='
|
|
52
46
|
- !ruby/object:Gem::Version
|
|
@@ -54,7 +48,6 @@ dependencies:
|
|
|
54
48
|
type: :runtime
|
|
55
49
|
prerelease: false
|
|
56
50
|
version_requirements: !ruby/object:Gem::Requirement
|
|
57
|
-
none: false
|
|
58
51
|
requirements:
|
|
59
52
|
- - '='
|
|
60
53
|
- !ruby/object:Gem::Version
|
|
@@ -62,23 +55,20 @@ dependencies:
|
|
|
62
55
|
- !ruby/object:Gem::Dependency
|
|
63
56
|
name: chef
|
|
64
57
|
requirement: !ruby/object:Gem::Requirement
|
|
65
|
-
none: false
|
|
66
58
|
requirements:
|
|
67
59
|
- - '='
|
|
68
60
|
- !ruby/object:Gem::Version
|
|
69
|
-
version:
|
|
61
|
+
version: 12.0.3
|
|
70
62
|
type: :runtime
|
|
71
63
|
prerelease: false
|
|
72
64
|
version_requirements: !ruby/object:Gem::Requirement
|
|
73
|
-
none: false
|
|
74
65
|
requirements:
|
|
75
66
|
- - '='
|
|
76
67
|
- !ruby/object:Gem::Version
|
|
77
|
-
version:
|
|
68
|
+
version: 12.0.3
|
|
78
69
|
- !ruby/object:Gem::Dependency
|
|
79
70
|
name: capistrano
|
|
80
71
|
requirement: !ruby/object:Gem::Requirement
|
|
81
|
-
none: false
|
|
82
72
|
requirements:
|
|
83
73
|
- - '='
|
|
84
74
|
- !ruby/object:Gem::Version
|
|
@@ -86,7 +76,6 @@ dependencies:
|
|
|
86
76
|
type: :runtime
|
|
87
77
|
prerelease: false
|
|
88
78
|
version_requirements: !ruby/object:Gem::Requirement
|
|
89
|
-
none: false
|
|
90
79
|
requirements:
|
|
91
80
|
- - '='
|
|
92
81
|
- !ruby/object:Gem::Version
|
|
@@ -94,7 +83,6 @@ dependencies:
|
|
|
94
83
|
- !ruby/object:Gem::Dependency
|
|
95
84
|
name: capistrano-rails
|
|
96
85
|
requirement: !ruby/object:Gem::Requirement
|
|
97
|
-
none: false
|
|
98
86
|
requirements:
|
|
99
87
|
- - '='
|
|
100
88
|
- !ruby/object:Gem::Version
|
|
@@ -102,7 +90,6 @@ dependencies:
|
|
|
102
90
|
type: :runtime
|
|
103
91
|
prerelease: false
|
|
104
92
|
version_requirements: !ruby/object:Gem::Requirement
|
|
105
|
-
none: false
|
|
106
93
|
requirements:
|
|
107
94
|
- - '='
|
|
108
95
|
- !ruby/object:Gem::Version
|
|
@@ -110,7 +97,6 @@ dependencies:
|
|
|
110
97
|
- !ruby/object:Gem::Dependency
|
|
111
98
|
name: capistrano-bundler
|
|
112
99
|
requirement: !ruby/object:Gem::Requirement
|
|
113
|
-
none: false
|
|
114
100
|
requirements:
|
|
115
101
|
- - '='
|
|
116
102
|
- !ruby/object:Gem::Version
|
|
@@ -118,7 +104,6 @@ dependencies:
|
|
|
118
104
|
type: :runtime
|
|
119
105
|
prerelease: false
|
|
120
106
|
version_requirements: !ruby/object:Gem::Requirement
|
|
121
|
-
none: false
|
|
122
107
|
requirements:
|
|
123
108
|
- - '='
|
|
124
109
|
- !ruby/object:Gem::Version
|
|
@@ -126,7 +111,6 @@ dependencies:
|
|
|
126
111
|
- !ruby/object:Gem::Dependency
|
|
127
112
|
name: capistrano-rvm
|
|
128
113
|
requirement: !ruby/object:Gem::Requirement
|
|
129
|
-
none: false
|
|
130
114
|
requirements:
|
|
131
115
|
- - '='
|
|
132
116
|
- !ruby/object:Gem::Version
|
|
@@ -134,7 +118,6 @@ dependencies:
|
|
|
134
118
|
type: :runtime
|
|
135
119
|
prerelease: false
|
|
136
120
|
version_requirements: !ruby/object:Gem::Requirement
|
|
137
|
-
none: false
|
|
138
121
|
requirements:
|
|
139
122
|
- - '='
|
|
140
123
|
- !ruby/object:Gem::Version
|
|
@@ -142,7 +125,6 @@ dependencies:
|
|
|
142
125
|
- !ruby/object:Gem::Dependency
|
|
143
126
|
name: sshkit
|
|
144
127
|
requirement: !ruby/object:Gem::Requirement
|
|
145
|
-
none: false
|
|
146
128
|
requirements:
|
|
147
129
|
- - '='
|
|
148
130
|
- !ruby/object:Gem::Version
|
|
@@ -150,7 +132,6 @@ dependencies:
|
|
|
150
132
|
type: :runtime
|
|
151
133
|
prerelease: false
|
|
152
134
|
version_requirements: !ruby/object:Gem::Requirement
|
|
153
|
-
none: false
|
|
154
135
|
requirements:
|
|
155
136
|
- - '='
|
|
156
137
|
- !ruby/object:Gem::Version
|
|
@@ -158,7 +139,6 @@ dependencies:
|
|
|
158
139
|
- !ruby/object:Gem::Dependency
|
|
159
140
|
name: rake
|
|
160
141
|
requirement: !ruby/object:Gem::Requirement
|
|
161
|
-
none: false
|
|
162
142
|
requirements:
|
|
163
143
|
- - ~>
|
|
164
144
|
- !ruby/object:Gem::Version
|
|
@@ -166,18 +146,14 @@ dependencies:
|
|
|
166
146
|
type: :development
|
|
167
147
|
prerelease: false
|
|
168
148
|
version_requirements: !ruby/object:Gem::Requirement
|
|
169
|
-
none: false
|
|
170
149
|
requirements:
|
|
171
150
|
- - ~>
|
|
172
151
|
- !ruby/object:Gem::Version
|
|
173
152
|
version: '10.3'
|
|
174
|
-
description:
|
|
175
|
-
|
|
153
|
+
description: |
|
|
154
|
+
Install the current versions of the MadScience stack. This stack includes
|
|
176
155
|
Vagrant, Chef and Capistrano - tools to configure a server, simulate it and
|
|
177
|
-
|
|
178
156
|
install software to it, as well as to allocate staging and production servers.
|
|
179
|
-
|
|
180
|
-
'
|
|
181
157
|
email:
|
|
182
158
|
- noah_gibbs@yahoo.com
|
|
183
159
|
executables:
|
|
@@ -195,20 +171,9 @@ files:
|
|
|
195
171
|
- Rakefile
|
|
196
172
|
- TODO
|
|
197
173
|
- bin/madscience
|
|
198
|
-
- lib/madscience.rb
|
|
199
|
-
- lib/madscience/version.rb
|
|
200
|
-
- madscience.gemspec
|
|
201
|
-
- new_gem_version.sh
|
|
202
|
-
- node-data.json
|
|
203
|
-
- site-cookbooks/madscience-vagrant-cookbook/CHANGELOG.md
|
|
204
|
-
- site-cookbooks/madscience-vagrant-cookbook/README.md
|
|
205
|
-
- site-cookbooks/madscience-vagrant-cookbook/files/default/aws.json
|
|
206
|
-
- site-cookbooks/madscience-vagrant-cookbook/files/default/digital_ocean.json
|
|
207
|
-
- site-cookbooks/madscience-vagrant-cookbook/metadata.rb
|
|
208
|
-
- site-cookbooks/madscience-vagrant-cookbook/recipes/default.rb
|
|
209
|
-
- solo.rb
|
|
210
|
-
- cookbooks/apt/attributes/default.rb
|
|
211
174
|
- cookbooks/apt/CHANGELOG.md
|
|
175
|
+
- cookbooks/apt/README.md
|
|
176
|
+
- cookbooks/apt/attributes/default.rb
|
|
212
177
|
- cookbooks/apt/files/default/apt-proxy-v2.conf
|
|
213
178
|
- cookbooks/apt/libraries/helpers.rb
|
|
214
179
|
- cookbooks/apt/libraries/matchers.rb
|
|
@@ -217,7 +182,6 @@ files:
|
|
|
217
182
|
- cookbooks/apt/metadata.rb
|
|
218
183
|
- cookbooks/apt/providers/preference.rb
|
|
219
184
|
- cookbooks/apt/providers/repository.rb
|
|
220
|
-
- cookbooks/apt/README.md
|
|
221
185
|
- cookbooks/apt/recipes/cacher-client.rb
|
|
222
186
|
- cookbooks/apt/recipes/cacher-ng.rb
|
|
223
187
|
- cookbooks/apt/recipes/default.rb
|
|
@@ -231,33 +195,34 @@ files:
|
|
|
231
195
|
- cookbooks/apt/templates/default/acng.conf.erb
|
|
232
196
|
- cookbooks/apt/templates/default/unattended-upgrades.seed.erb
|
|
233
197
|
- cookbooks/apt/templates/ubuntu-10.04/acng.conf.erb
|
|
234
|
-
- cookbooks/chef_handler/attributes/default.rb
|
|
235
198
|
- cookbooks/chef_handler/CHANGELOG.md
|
|
199
|
+
- cookbooks/chef_handler/README.md
|
|
200
|
+
- cookbooks/chef_handler/attributes/default.rb
|
|
236
201
|
- cookbooks/chef_handler/files/default/handlers/README
|
|
237
202
|
- cookbooks/chef_handler/libraries/matchers.rb
|
|
238
203
|
- cookbooks/chef_handler/metadata.json
|
|
239
204
|
- cookbooks/chef_handler/metadata.rb
|
|
240
205
|
- cookbooks/chef_handler/providers/default.rb
|
|
241
|
-
- cookbooks/chef_handler/README.md
|
|
242
206
|
- cookbooks/chef_handler/recipes/default.rb
|
|
243
207
|
- cookbooks/chef_handler/recipes/json_file.rb
|
|
244
208
|
- cookbooks/chef_handler/resources/default.rb
|
|
245
|
-
- cookbooks/dmg/attributes/default.rb
|
|
246
209
|
- cookbooks/dmg/CHANGELOG.md
|
|
210
|
+
- cookbooks/dmg/README.md
|
|
211
|
+
- cookbooks/dmg/attributes/default.rb
|
|
247
212
|
- cookbooks/dmg/libraries/matchers.rb
|
|
248
213
|
- cookbooks/dmg/metadata.json
|
|
249
214
|
- cookbooks/dmg/metadata.rb
|
|
250
215
|
- cookbooks/dmg/providers/package.rb
|
|
251
|
-
- cookbooks/dmg/README.md
|
|
252
216
|
- cookbooks/dmg/recipes/default.rb
|
|
253
217
|
- cookbooks/dmg/resources/package.rb
|
|
254
|
-
- cookbooks/vagrant/attributes/default.rb
|
|
255
218
|
- cookbooks/vagrant/Berksfile
|
|
256
219
|
- cookbooks/vagrant/CHANGELOG.md
|
|
220
|
+
- cookbooks/vagrant/README.md
|
|
221
|
+
- cookbooks/vagrant/TESTING.md
|
|
222
|
+
- cookbooks/vagrant/attributes/default.rb
|
|
257
223
|
- cookbooks/vagrant/libraries/helpers.rb
|
|
258
224
|
- cookbooks/vagrant/metadata.rb
|
|
259
225
|
- cookbooks/vagrant/providers/plugin.rb
|
|
260
|
-
- cookbooks/vagrant/README.md
|
|
261
226
|
- cookbooks/vagrant/recipes/debian.rb
|
|
262
227
|
- cookbooks/vagrant/recipes/default.rb
|
|
263
228
|
- cookbooks/vagrant/recipes/fedora.rb
|
|
@@ -266,7 +231,7 @@ files:
|
|
|
266
231
|
- cookbooks/vagrant/recipes/uninstall_gem.rb
|
|
267
232
|
- cookbooks/vagrant/recipes/windows.rb
|
|
268
233
|
- cookbooks/vagrant/resources/plugin.rb
|
|
269
|
-
- cookbooks/
|
|
234
|
+
- cookbooks/virtualbox/README.md
|
|
270
235
|
- cookbooks/virtualbox/attributes/default.rb
|
|
271
236
|
- cookbooks/virtualbox/attributes/user.rb
|
|
272
237
|
- cookbooks/virtualbox/attributes/webportal.rb
|
|
@@ -275,7 +240,6 @@ files:
|
|
|
275
240
|
- cookbooks/virtualbox/files/ubuntu/vboxcontrol
|
|
276
241
|
- cookbooks/virtualbox/libraries/helpers.rb
|
|
277
242
|
- cookbooks/virtualbox/metadata.rb
|
|
278
|
-
- cookbooks/virtualbox/README.md
|
|
279
243
|
- cookbooks/virtualbox/recipes/default.rb
|
|
280
244
|
- cookbooks/virtualbox/recipes/systemservice.rb
|
|
281
245
|
- cookbooks/virtualbox/recipes/user.rb
|
|
@@ -284,13 +248,16 @@ files:
|
|
|
284
248
|
- cookbooks/virtualbox/templates/ubuntu/config.erb
|
|
285
249
|
- cookbooks/virtualbox/templates/ubuntu/config.php.erb
|
|
286
250
|
- cookbooks/virtualbox/templates/ubuntu/vbox.cfg.erb
|
|
287
|
-
- cookbooks/windows/attributes/default.rb
|
|
288
251
|
- cookbooks/windows/Berksfile
|
|
289
252
|
- cookbooks/windows/CHANGELOG.md
|
|
290
|
-
- cookbooks/windows/chefignore
|
|
291
253
|
- cookbooks/windows/CONTRIBUTING
|
|
292
|
-
- cookbooks/windows/files/default/handlers/windows_reboot_handler.rb
|
|
293
254
|
- cookbooks/windows/Gemfile
|
|
255
|
+
- cookbooks/windows/LICENSE
|
|
256
|
+
- cookbooks/windows/README.md
|
|
257
|
+
- cookbooks/windows/TODO.md
|
|
258
|
+
- cookbooks/windows/attributes/default.rb
|
|
259
|
+
- cookbooks/windows/chefignore
|
|
260
|
+
- cookbooks/windows/files/default/handlers/windows_reboot_handler.rb
|
|
294
261
|
- cookbooks/windows/libraries/feature_base.rb
|
|
295
262
|
- cookbooks/windows/libraries/matchers.rb
|
|
296
263
|
- cookbooks/windows/libraries/powershell_helper.rb
|
|
@@ -302,7 +269,6 @@ files:
|
|
|
302
269
|
- cookbooks/windows/libraries/windows_package.rb
|
|
303
270
|
- cookbooks/windows/libraries/windows_privileged.rb
|
|
304
271
|
- cookbooks/windows/libraries/wmi_helper.rb
|
|
305
|
-
- cookbooks/windows/LICENSE
|
|
306
272
|
- cookbooks/windows/metadata.json
|
|
307
273
|
- cookbooks/windows/metadata.rb
|
|
308
274
|
- cookbooks/windows/providers/auto_run.rb
|
|
@@ -320,7 +286,6 @@ files:
|
|
|
320
286
|
- cookbooks/windows/providers/shortcut.rb
|
|
321
287
|
- cookbooks/windows/providers/task.rb
|
|
322
288
|
- cookbooks/windows/providers/zipfile.rb
|
|
323
|
-
- cookbooks/windows/README.md
|
|
324
289
|
- cookbooks/windows/recipes/default.rb
|
|
325
290
|
- cookbooks/windows/recipes/reboot_handler.rb
|
|
326
291
|
- cookbooks/windows/resources/auto_run.rb
|
|
@@ -336,44 +301,53 @@ files:
|
|
|
336
301
|
- cookbooks/windows/resources/shortcut.rb
|
|
337
302
|
- cookbooks/windows/resources/task.rb
|
|
338
303
|
- cookbooks/windows/resources/zipfile.rb
|
|
339
|
-
- cookbooks/windows/TODO.md
|
|
340
|
-
- cookbooks/yum/attributes/main.rb
|
|
341
304
|
- cookbooks/yum/CHANGELOG.md
|
|
305
|
+
- cookbooks/yum/README.md
|
|
306
|
+
- cookbooks/yum/attributes/main.rb
|
|
342
307
|
- cookbooks/yum/libraries/matchers.rb
|
|
343
308
|
- cookbooks/yum/metadata.json
|
|
344
309
|
- cookbooks/yum/metadata.rb
|
|
345
310
|
- cookbooks/yum/providers/globalconfig.rb
|
|
346
311
|
- cookbooks/yum/providers/repository.rb
|
|
347
|
-
- cookbooks/yum/README.md
|
|
348
312
|
- cookbooks/yum/recipes/default.rb
|
|
349
313
|
- cookbooks/yum/resources/globalconfig.rb
|
|
350
314
|
- cookbooks/yum/resources/repository.rb
|
|
351
315
|
- cookbooks/yum/templates/default/main.erb
|
|
352
316
|
- cookbooks/yum/templates/default/repo.erb
|
|
317
|
+
- lib/madscience.rb
|
|
318
|
+
- lib/madscience/version.rb
|
|
319
|
+
- madscience.gemspec
|
|
320
|
+
- new_gem_version.sh
|
|
321
|
+
- node-data.json
|
|
322
|
+
- site-cookbooks/madscience-vagrant-cookbook/CHANGELOG.md
|
|
323
|
+
- site-cookbooks/madscience-vagrant-cookbook/README.md
|
|
324
|
+
- site-cookbooks/madscience-vagrant-cookbook/files/default/aws.json
|
|
325
|
+
- site-cookbooks/madscience-vagrant-cookbook/files/default/digital_ocean.json
|
|
326
|
+
- site-cookbooks/madscience-vagrant-cookbook/metadata.rb
|
|
327
|
+
- site-cookbooks/madscience-vagrant-cookbook/recipes/default.rb
|
|
328
|
+
- solo.rb
|
|
353
329
|
homepage: http://rubymadscience.com
|
|
354
330
|
licenses:
|
|
355
331
|
- MIT
|
|
332
|
+
metadata: {}
|
|
356
333
|
post_install_message:
|
|
357
334
|
rdoc_options: []
|
|
358
335
|
require_paths:
|
|
359
336
|
- lib
|
|
360
337
|
required_ruby_version: !ruby/object:Gem::Requirement
|
|
361
|
-
none: false
|
|
362
338
|
requirements:
|
|
363
|
-
- -
|
|
339
|
+
- - '>='
|
|
364
340
|
- !ruby/object:Gem::Version
|
|
365
341
|
version: '0'
|
|
366
342
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
367
|
-
none: false
|
|
368
343
|
requirements:
|
|
369
|
-
- -
|
|
344
|
+
- - '>='
|
|
370
345
|
- !ruby/object:Gem::Version
|
|
371
346
|
version: '0'
|
|
372
347
|
requirements: []
|
|
373
348
|
rubyforge_project:
|
|
374
|
-
rubygems_version:
|
|
349
|
+
rubygems_version: 2.2.2
|
|
375
350
|
signing_key:
|
|
376
|
-
specification_version:
|
|
351
|
+
specification_version: 4
|
|
377
352
|
summary: Install the current versions of the MadScience stack.
|
|
378
353
|
test_files: []
|
|
379
|
-
has_rdoc:
|