madscience 0.0.1 → 0.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/.gitignore +1 -0
- data/bin/madscience +2 -1
- data/lib/madscience/version.rb +1 -1
- data/madscience.gemspec +1 -1
- data/new_gem_version.rb +2 -2
- data/site-cookbooks/madscience-vagrant-cookbook/recipes/default.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: d9a0d72b0445c690f25e6a54486fe982780fa2a9
|
|
4
|
+
data.tar.gz: 4977d1bf75deef34a3c68932bb4eb72e209247cb
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 0411550f681a566087d0b4200a2ba78efcda1829ebe8d03db24809c5d523759ef1425bf4388c2d7471d89821dd3bfdb4f9db508feb1dabd695f14004a60e41f0
|
|
7
|
+
data.tar.gz: eec7c27667a373cb3cbb12353ded27450a1961abdec17c225335c8fb7fe170bfe1e537b84ee2a8908026a62a33a56497d89049e62a5c62e156f035490a0013c6
|
data/.gitignore
CHANGED
data/bin/madscience
CHANGED
|
@@ -64,7 +64,8 @@ if ARGV[0] == "clone"
|
|
|
64
64
|
# Change back to pre-Bundler-setup directory where we were invoked
|
|
65
65
|
Dir.chdir cur_dir
|
|
66
66
|
|
|
67
|
-
|
|
67
|
+
home_dir = ENV['HOME'] || ENV['userprofile']
|
|
68
|
+
location = "#{home_dir}/deploy_repo"
|
|
68
69
|
|
|
69
70
|
# Now we'll git clone the MadScience repo, at a branch corresponding to our MadScience version
|
|
70
71
|
# TODO: check out MadScience::VERSION branch when we start having real releases
|
data/lib/madscience/version.rb
CHANGED
data/madscience.gemspec
CHANGED
|
@@ -18,7 +18,7 @@ DESC
|
|
|
18
18
|
spec.license = "MIT"
|
|
19
19
|
|
|
20
20
|
spec.files = `git ls-files -z`.split("\x0") +
|
|
21
|
-
Dir.glob("cookbooks/**/*")
|
|
21
|
+
Dir.glob("cookbooks/**/*") - ["cookbooks/.keep"]
|
|
22
22
|
spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
|
|
23
23
|
spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
|
|
24
24
|
spec.require_paths = ["lib"]
|
data/new_gem_version.rb
CHANGED
|
@@ -12,7 +12,7 @@
|
|
|
12
12
|
# Default attributes in a cookbook override default
|
|
13
13
|
# attributes in an attributes file, like the one
|
|
14
14
|
# in vagrant-cookbook/attributes/default.rb.
|
|
15
|
-
node.default['vagrant']['plugins'] = [ 'vagrant-omnibus' ]
|
|
15
|
+
node.default['vagrant']['plugins'] = [ 'vagrant-omnibus', 'vagrant-librarian-chef' ]
|
|
16
16
|
|
|
17
17
|
case node['platform_family']
|
|
18
18
|
when 'fedora'
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: madscience
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.0.
|
|
4
|
+
version: 0.0.2
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Noah Gibbs
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2014-09-
|
|
11
|
+
date: 2014-09-24 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: bundler
|