server-blender 0.0.16 → 0.0.18
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.
- data/VERSION +1 -1
- data/files/mix.sh +2 -2
- data/server-blender.gemspec +28 -30
- metadata +6 -7
- data/.gitignore +0 -28
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
0.0.
|
|
1
|
+
0.0.18
|
data/files/mix.sh
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
set -ue
|
|
2
2
|
|
|
3
3
|
SHADOW_PUPPET_VERSION="0.3.2"
|
|
4
|
-
MANIFEST_VERSION="0.0
|
|
4
|
+
MANIFEST_VERSION="0.1.0"
|
|
5
5
|
|
|
6
6
|
trap "echo FAILED" EXIT
|
|
7
7
|
|
|
@@ -11,7 +11,7 @@ function ensure_gem()
|
|
|
11
11
|
if [ $# -eq 2 ]; then
|
|
12
12
|
# name + version
|
|
13
13
|
if ! gem list $1 | grep -q "$1 (\([^,]*, \)*${2//./\\.}\(, [^,]*\)*)$"; then
|
|
14
|
-
echo installing $1 $2
|
|
14
|
+
echo installing $1 -v$2
|
|
15
15
|
gem install --no-ri --no-rdoc $1 -v$2
|
|
16
16
|
fi
|
|
17
17
|
else
|
data/server-blender.gemspec
CHANGED
|
@@ -1,15 +1,15 @@
|
|
|
1
1
|
# Generated by jeweler
|
|
2
2
|
# DO NOT EDIT THIS FILE DIRECTLY
|
|
3
|
-
# Instead, edit Jeweler::Tasks in Rakefile, and run
|
|
3
|
+
# Instead, edit Jeweler::Tasks in Rakefile, and run 'rake gemspec'
|
|
4
4
|
# -*- encoding: utf-8 -*-
|
|
5
5
|
|
|
6
6
|
Gem::Specification.new do |s|
|
|
7
7
|
s.name = %q{server-blender}
|
|
8
|
-
s.version = "0.0.
|
|
8
|
+
s.version = "0.0.18"
|
|
9
9
|
|
|
10
10
|
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
|
11
11
|
s.authors = ["Vitaly Kushner"]
|
|
12
|
-
s.date = %q{2010-
|
|
12
|
+
s.date = %q{2010-12-06}
|
|
13
13
|
s.default_executable = %q{blender}
|
|
14
14
|
s.description = %q{Boostrap and manage servers with shadow_puppet
|
|
15
15
|
|
|
@@ -23,43 +23,41 @@ http://reductivelabs.com/products/puppet/
|
|
|
23
23
|
s.executables = ["blender"]
|
|
24
24
|
s.extra_rdoc_files = [
|
|
25
25
|
"LICENSE",
|
|
26
|
-
|
|
26
|
+
"README.markdown"
|
|
27
27
|
]
|
|
28
28
|
s.files = [
|
|
29
29
|
".braids",
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
"spec/spec_helper.rb"
|
|
30
|
+
".document",
|
|
31
|
+
"LICENSE",
|
|
32
|
+
"PLAN",
|
|
33
|
+
"README.markdown",
|
|
34
|
+
"Rakefile",
|
|
35
|
+
"VERSION",
|
|
36
|
+
"bin/blender",
|
|
37
|
+
"files/bootstrap.sh",
|
|
38
|
+
"files/init.sh",
|
|
39
|
+
"files/mix.sh",
|
|
40
|
+
"lib/blender.rb",
|
|
41
|
+
"lib/blender/cli.rb",
|
|
42
|
+
"lib/blender/cli/init.rb",
|
|
43
|
+
"lib/blender/cli/mix.rb",
|
|
44
|
+
"lib/blender/cli/start.rb",
|
|
45
|
+
"server-blender.gemspec",
|
|
46
|
+
"spec/cli/init_spec.rb",
|
|
47
|
+
"spec/cli/mix_spec.rb",
|
|
48
|
+
"spec/cli/start_spec.rb",
|
|
49
|
+
"spec/spec.opts",
|
|
50
|
+
"spec/spec_helper.rb"
|
|
52
51
|
]
|
|
53
52
|
s.homepage = %q{http://astrails.com/opensource/server-blender}
|
|
54
|
-
s.rdoc_options = ["--charset=UTF-8"]
|
|
55
53
|
s.require_paths = ["lib"]
|
|
56
54
|
s.rubygems_version = %q{1.3.7}
|
|
57
55
|
s.summary = %q{Server provisioning and configuration management tool}
|
|
58
56
|
s.test_files = [
|
|
59
57
|
"spec/cli/init_spec.rb",
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
58
|
+
"spec/cli/mix_spec.rb",
|
|
59
|
+
"spec/cli/start_spec.rb",
|
|
60
|
+
"spec/spec_helper.rb"
|
|
63
61
|
]
|
|
64
62
|
|
|
65
63
|
if s.respond_to? :specification_version then
|
metadata
CHANGED
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: server-blender
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
hash:
|
|
4
|
+
hash: 59
|
|
5
5
|
prerelease: false
|
|
6
6
|
segments:
|
|
7
7
|
- 0
|
|
8
8
|
- 0
|
|
9
|
-
-
|
|
10
|
-
version: 0.0.
|
|
9
|
+
- 18
|
|
10
|
+
version: 0.0.18
|
|
11
11
|
platform: ruby
|
|
12
12
|
authors:
|
|
13
13
|
- Vitaly Kushner
|
|
@@ -15,7 +15,7 @@ autorequire:
|
|
|
15
15
|
bindir: bin
|
|
16
16
|
cert_chain: []
|
|
17
17
|
|
|
18
|
-
date: 2010-
|
|
18
|
+
date: 2010-12-06 00:00:00 +02:00
|
|
19
19
|
default_executable: blender
|
|
20
20
|
dependencies:
|
|
21
21
|
- !ruby/object:Gem::Dependency
|
|
@@ -68,7 +68,6 @@ extra_rdoc_files:
|
|
|
68
68
|
files:
|
|
69
69
|
- .braids
|
|
70
70
|
- .document
|
|
71
|
-
- .gitignore
|
|
72
71
|
- LICENSE
|
|
73
72
|
- PLAN
|
|
74
73
|
- README.markdown
|
|
@@ -94,8 +93,8 @@ homepage: http://astrails.com/opensource/server-blender
|
|
|
94
93
|
licenses: []
|
|
95
94
|
|
|
96
95
|
post_install_message:
|
|
97
|
-
rdoc_options:
|
|
98
|
-
|
|
96
|
+
rdoc_options: []
|
|
97
|
+
|
|
99
98
|
require_paths:
|
|
100
99
|
- lib
|
|
101
100
|
required_ruby_version: !ruby/object:Gem::Requirement
|
data/.gitignore
DELETED
|
@@ -1,28 +0,0 @@
|
|
|
1
|
-
## MISC
|
|
2
|
-
pkg
|
|
3
|
-
tags
|
|
4
|
-
.yardoc
|
|
5
|
-
|
|
6
|
-
## MAC OS
|
|
7
|
-
.DS_Store
|
|
8
|
-
|
|
9
|
-
## TEXTMATE
|
|
10
|
-
*.tmproj
|
|
11
|
-
tmtags
|
|
12
|
-
|
|
13
|
-
## EMACS
|
|
14
|
-
*~
|
|
15
|
-
\#*
|
|
16
|
-
.\#*
|
|
17
|
-
|
|
18
|
-
## VIM
|
|
19
|
-
*.swp
|
|
20
|
-
|
|
21
|
-
## PROJECT::GENERAL
|
|
22
|
-
coverage
|
|
23
|
-
rdoc
|
|
24
|
-
pkg
|
|
25
|
-
|
|
26
|
-
## PROJECT::SPECIFIC
|
|
27
|
-
doc
|
|
28
|
-
log/
|