depengine 0.0.8 → 0.0.9
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 +15 -0
- data/bin/de +1 -2
- data/bin/full_install +66 -0
- data/lib/depengine/cli.rb +5 -7
- data/lib/depengine/dsl/deployment.rb +43 -43
- data/lib/depengine/provider/cdb.rb +1 -1
- data/lib/depengine/provider/cdb_filesystem.rb +1 -1
- data/lib/depengine/version.rb +1 -1
- metadata +28 -26
checksums.yaml
ADDED
@@ -0,0 +1,15 @@
|
|
1
|
+
---
|
2
|
+
!binary "U0hBMQ==":
|
3
|
+
metadata.gz: !binary |-
|
4
|
+
NTU3ZDdhMWU0NTAzZWE5YjU0YWU1NWNlNDgyOTllYTYyNTJlZDgxYQ==
|
5
|
+
data.tar.gz: !binary |-
|
6
|
+
MGNiZDQ0ZTAzMzA0M2MxM2VlOWJhMzBmZDVhYmZlNDdlODdjMzVjOA==
|
7
|
+
!binary "U0hBNTEy":
|
8
|
+
metadata.gz: !binary |-
|
9
|
+
MmZkNjNmNjkzNDAwNWIxY2Y3YTMxZDRlOWZkMDY0NGMwYmZkNTkyN2QyNjYw
|
10
|
+
ZDgwM2ZjYjg0NDdhMGExNTc1ZDVlN2M5MzM1ODE2YmQ1NTQ1MzkwZTE2OGE0
|
11
|
+
YWQwNWI4MWVhNTg4MDdkNzg0NTUxZjgwNTQ4ZjQ5OTQ2YjJiMGE=
|
12
|
+
data.tar.gz: !binary |-
|
13
|
+
YzhiOGU2ODVjMjJmZTAxNzcyOGM2YjdiYmQxNjg5ODQzNjQwMTcwY2MzMTE0
|
14
|
+
YTBmNmI3YTM1ZTZjZjU1MWM2YTNlODNiNTEyMDZiMjdiNzFmMTNlZDcwMzYy
|
15
|
+
ZDBkZWEyZjA1ODNlMTU5MDc0YTkwM2ZlMjNjYzZiZWIyNWI1YzA=
|
data/bin/de
CHANGED
data/bin/full_install
ADDED
@@ -0,0 +1,66 @@
|
|
1
|
+
#!/usr/bin/env bash
|
2
|
+
# TOOLROOT=$HOME/Projekte/deploy_depengine
|
3
|
+
TOOLROOT=/home/jenkins/Projekt_depengine
|
4
|
+
|
5
|
+
|
6
|
+
RUBYVERSION=1.9.3
|
7
|
+
DEPENGINEVERSION=0.0.8
|
8
|
+
usage=$(
|
9
|
+
cat <<EOF
|
10
|
+
$0 [OPTION]
|
11
|
+
-t VALUE set toolroot argument to VALUE
|
12
|
+
-r VALUE set rubyversion argument to VALUE
|
13
|
+
-d VALUE set depengineversion argument to VALUE
|
14
|
+
EOF
|
15
|
+
)
|
16
|
+
|
17
|
+
while getopts "t:r:d:" OPTION; do
|
18
|
+
case "$OPTION" in
|
19
|
+
t)
|
20
|
+
TOOLROOT="$OPTARG"
|
21
|
+
;;
|
22
|
+
r)
|
23
|
+
RUBYVERSION="$OPTARG"
|
24
|
+
;;
|
25
|
+
d)
|
26
|
+
DEPENGINEVERSION="$OPTARG"
|
27
|
+
;;
|
28
|
+
*)
|
29
|
+
echo "unrecognized option"
|
30
|
+
echo "$usage"
|
31
|
+
;;
|
32
|
+
esac
|
33
|
+
done
|
34
|
+
|
35
|
+
export rvm_path=$TOOLROOT/rvm
|
36
|
+
mkdir -p $rvm_path
|
37
|
+
|
38
|
+
if [ ! -f $rvm_path/scripts/rvm ]; then
|
39
|
+
bash -s stable < <(curl -s https://raw.github.com/wayneeseguin/rvm/master/binscripts/rvm-installer )
|
40
|
+
fi
|
41
|
+
|
42
|
+
source $rvm_path/scripts/rvm
|
43
|
+
rvm reload
|
44
|
+
|
45
|
+
if rvm list | grep "$RUBYVERSION" >/dev/null; then
|
46
|
+
# echo EXISTIERT
|
47
|
+
:
|
48
|
+
else
|
49
|
+
# echo MUSS INSTALLIERT WERDEN
|
50
|
+
rvm install "$RUBYVERSION"
|
51
|
+
fi
|
52
|
+
|
53
|
+
rvm use "$RUBYVERSION"
|
54
|
+
|
55
|
+
gem update --system | grep -v "Latest version currently installed"
|
56
|
+
|
57
|
+
if gem list | grep depengine | grep "$DEPENGINEVERSION" >/dev/null; then
|
58
|
+
# echo EXISTIERT
|
59
|
+
:
|
60
|
+
else
|
61
|
+
# echo MUSS INSTALLIERT WERDEN
|
62
|
+
gem install depengine --version "$DEPENGINEVERSION"
|
63
|
+
fi
|
64
|
+
|
65
|
+
# type de
|
66
|
+
# de --deployhome /export/home/ctraut/Projekte/deploy_demoproject --env demo --version 0.0.1
|
data/lib/depengine/cli.rb
CHANGED
@@ -11,30 +11,28 @@ module Depengine
|
|
11
11
|
o.banner = "Usage: #{File.basename($0)} [options]"
|
12
12
|
o.separator ""
|
13
13
|
o.on('-h', '--deployhome [DIRNAME]', 'Home of deployments.') do |dname|
|
14
|
-
|
15
|
-
ENV['WORKSPACE'] = dname
|
14
|
+
set :deploy_home, dname
|
16
15
|
end
|
17
16
|
o.on('-r', '--recipe [FILENAME]', 'Filename of the recipe.') do |fname|
|
18
17
|
@recipe_name = fname
|
19
18
|
end
|
20
19
|
o.on('-e', '--env [ENVNAME]', 'Environment name.') do |ename|
|
21
|
-
|
20
|
+
set :env, ename
|
22
21
|
end
|
23
22
|
o.on('-v', '--version [VERSION]', 'Version.') do |vname|
|
24
|
-
|
23
|
+
set :version, vname
|
25
24
|
end
|
26
25
|
o.parse!
|
27
26
|
end
|
28
|
-
|
29
27
|
# unless args.size == 2
|
30
28
|
# error << args.options
|
31
29
|
# return 127
|
32
30
|
# end
|
33
31
|
|
34
|
-
recipe_filename = File.join(
|
32
|
+
recipe_filename = File.join($recipe_config[:deploy_home], @recipe_name)
|
35
33
|
puts "Using recipe #{recipe_filename}"
|
36
34
|
eval(File.new(recipe_filename).read)
|
37
|
-
|
35
|
+
return 0
|
38
36
|
end
|
39
37
|
end
|
40
38
|
end
|
@@ -53,15 +53,15 @@ module Deployment
|
|
53
53
|
$recipe_config.merge! Helper.get_environemnt_variables($recipe_config['env_exceptions'])
|
54
54
|
|
55
55
|
# generate version hash from environment variable
|
56
|
-
@version = Helper.parse_version($recipe_config[
|
56
|
+
@version = Helper.parse_version($recipe_config[:version])
|
57
57
|
|
58
58
|
# validate needed environment variables
|
59
|
-
Helper.validates_not_empty $recipe_config[
|
60
|
-
"
|
61
|
-
Helper.validates_not_empty $recipe_config[
|
62
|
-
"
|
63
|
-
Helper.validates_not_empty $recipe_config[
|
64
|
-
"
|
59
|
+
Helper.validates_not_empty $recipe_config[:env], \
|
60
|
+
"env is not set"
|
61
|
+
Helper.validates_not_empty $recipe_config[:version], \
|
62
|
+
"version is not set"
|
63
|
+
Helper.validates_not_empty $recipe_config[:deploy_home], \
|
64
|
+
"deploy_home is not set"
|
65
65
|
|
66
66
|
# read configuration from cdb
|
67
67
|
@cdb = get_cdb_parameters(@version['cdb'])
|
@@ -69,10 +69,10 @@ module Deployment
|
|
69
69
|
# clean workspace if needed
|
70
70
|
if $recipe_config[:cleanup_workspace_before]
|
71
71
|
$log.writer.info "Remove all files from Workspace"
|
72
|
-
Helper.cleanup_workspace!($recipe_config[
|
72
|
+
Helper.cleanup_workspace!($recipe_config[:deploy_home])
|
73
73
|
end
|
74
74
|
# init workspace with default directorys
|
75
|
-
Helper.init_workspace($recipe_config[
|
75
|
+
Helper.init_workspace($recipe_config[:deploy_home])
|
76
76
|
|
77
77
|
# the logfile needs a correct WORKSPACE and the initial dirs
|
78
78
|
# so we have to set it here
|
@@ -92,7 +92,7 @@ module Deployment
|
|
92
92
|
level = Log4r::FATAL
|
93
93
|
end
|
94
94
|
$log.add_outputter(Log4r::FileOutputter.new('log_file', \
|
95
|
-
:filename => File.join($recipe_config[
|
95
|
+
:filename => File.join($recipe_config[:deploy_home], 'log', \
|
96
96
|
$recipe_config[:log_file])), \
|
97
97
|
level)
|
98
98
|
end
|
@@ -103,38 +103,38 @@ module Deployment
|
|
103
103
|
# $recipe_config[:application_name]
|
104
104
|
|
105
105
|
def copy(source, target, options={})
|
106
|
-
Processor.copy(File.join($recipe_config[
|
107
|
-
File.join($recipe_config[
|
106
|
+
Processor.copy(File.join($recipe_config[:deploy_home], source), \
|
107
|
+
File.join($recipe_config[:deploy_home], target), \
|
108
108
|
options)
|
109
109
|
end
|
110
110
|
|
111
111
|
def mkdir(directory)
|
112
|
-
Processor.mkdir(File.join($recipe_config[
|
112
|
+
Processor.mkdir(File.join($recipe_config[:deploy_home], directory))
|
113
113
|
end
|
114
114
|
|
115
115
|
def chmod(file, mode, options={})
|
116
|
-
Processor.chmod(File.join($recipe_config[
|
116
|
+
Processor.chmod(File.join($recipe_config[:deploy_home], file), \
|
117
117
|
mode, options)
|
118
118
|
end
|
119
119
|
|
120
120
|
def remove(file)
|
121
|
-
Processor.remove(File.join($recipe_config[
|
121
|
+
Processor.remove(File.join($recipe_config[:deploy_home], file))
|
122
122
|
end
|
123
123
|
|
124
124
|
def mklink(source, target)
|
125
|
-
Processor.mklink(source, File.join($recipe_config[
|
125
|
+
Processor.mklink(source, File.join($recipe_config[:deploy_home], target))
|
126
126
|
end
|
127
127
|
|
128
128
|
def check_filelist(list, target)
|
129
|
-
Processor.check_filelist(File.join($recipe_config[
|
130
|
-
File.join($recipe_config[
|
129
|
+
Processor.check_filelist(File.join($recipe_config[:deploy_home], list), \
|
130
|
+
File.join($recipe_config[:deploy_home], target))
|
131
131
|
end
|
132
132
|
|
133
133
|
def unzip_file(zip_file, target_dir, filename=nil)
|
134
134
|
Helper.validates_presence_of @cdb['unzip_bin']
|
135
135
|
|
136
|
-
Processor.unzip_file(File.join($recipe_config[
|
137
|
-
File.join($recipe_config[
|
136
|
+
Processor.unzip_file(File.join($recipe_config[:deploy_home], zip_file), \
|
137
|
+
File.join($recipe_config[:deploy_home], target_dir), \
|
138
138
|
filename,
|
139
139
|
@cdb['unzip_bin'])
|
140
140
|
end
|
@@ -142,8 +142,8 @@ module Deployment
|
|
142
142
|
def tgz_file(tgz_file, source_dir, filename=nil)
|
143
143
|
Helper.validates_presence_of @cdb['tar_bin']
|
144
144
|
|
145
|
-
Processor.tgz_file(File.join($recipe_config[
|
146
|
-
File.join($recipe_config[
|
145
|
+
Processor.tgz_file(File.join($recipe_config[:deploy_home], tgz_file), \
|
146
|
+
File.join($recipe_config[:deploy_home], source_dir), \
|
147
147
|
filename,
|
148
148
|
@cdb['tar_bin'])
|
149
149
|
end
|
@@ -151,8 +151,8 @@ module Deployment
|
|
151
151
|
def untgz_file(tgz_file, target_dir, filename=nil)
|
152
152
|
Helper.validates_presence_of @cdb['tar_bin']
|
153
153
|
|
154
|
-
Processor.untgz_file(File.join($recipe_config[
|
155
|
-
File.join($recipe_config[
|
154
|
+
Processor.untgz_file(File.join($recipe_config[:deploy_home], tgz_file), \
|
155
|
+
File.join($recipe_config[:deploy_home], target_dir), \
|
156
156
|
filename,
|
157
157
|
@cdb['tar_bin'])
|
158
158
|
end
|
@@ -160,7 +160,7 @@ module Deployment
|
|
160
160
|
def parse_template(source, target, content, options={})
|
161
161
|
template = Processor::Template.new
|
162
162
|
template.cdb = @cdb
|
163
|
-
template.basepath = options[:basepath] || $recipe_config[
|
163
|
+
template.basepath = options[:basepath] || $recipe_config[:deploy_home]
|
164
164
|
options[:excludes] = [] if options[:excludes].nil?
|
165
165
|
options[:excludes] << '.svn'
|
166
166
|
template.parse_template(source, content, target, options)
|
@@ -182,7 +182,7 @@ module Deployment
|
|
182
182
|
cdb.protocol = 'http'
|
183
183
|
cdb.host = $recipe_config['cdb_host']
|
184
184
|
cdb.context = $recipe_config['cdb_context']
|
185
|
-
cdb.env = $recipe_config[
|
185
|
+
cdb.env = $recipe_config[:env]
|
186
186
|
|
187
187
|
cdb.get_parameters(File.join( $recipe_config[:module_name], \
|
188
188
|
$recipe_config[:application_name] ), version)
|
@@ -198,7 +198,7 @@ module Deployment
|
|
198
198
|
cdb.protocol = 'http'
|
199
199
|
cdb.host = $recipe_config['cdb_host']
|
200
200
|
cdb.context = $recipe_config['cdb_context']
|
201
|
-
cdb.env = $recipe_config[
|
201
|
+
cdb.env = $recipe_config[:env]
|
202
202
|
|
203
203
|
cdb.set_parameter(File.join( $recipe_config[:module_name], \
|
204
204
|
$recipe_config[:application_name] ), key, value)
|
@@ -212,7 +212,7 @@ module Deployment
|
|
212
212
|
samba.samba_mountpoints = @cdb['samba_mountpoints']
|
213
213
|
samba.method = "samba"
|
214
214
|
samba.worker = self
|
215
|
-
samba.get_from_repository(source, File.join($recipe_config[
|
215
|
+
samba.get_from_repository(source, File.join($recipe_config[:deploy_home], target))
|
216
216
|
end
|
217
217
|
|
218
218
|
def get_file_from_maven(source, target)
|
@@ -223,7 +223,7 @@ module Deployment
|
|
223
223
|
maven.user = @cdb['maven_user']
|
224
224
|
maven.password = @cdb['maven_password']
|
225
225
|
maven.method = "maven"
|
226
|
-
maven.get_from_repository(source, File.join($recipe_config[
|
226
|
+
maven.get_from_repository(source, File.join($recipe_config[:deploy_home], target))
|
227
227
|
end
|
228
228
|
|
229
229
|
def get_file_via_scp(source, target, options={})
|
@@ -243,7 +243,7 @@ module Deployment
|
|
243
243
|
@cdb['ssh_key_file'])
|
244
244
|
end
|
245
245
|
scp.method = "scp"
|
246
|
-
scp.get_from_repository(source, File.join($recipe_config[
|
246
|
+
scp.get_from_repository(source, File.join($recipe_config[:deploy_home], target))
|
247
247
|
end
|
248
248
|
|
249
249
|
def get_file_via_svn(source, target, options={})
|
@@ -275,7 +275,7 @@ module Deployment
|
|
275
275
|
end
|
276
276
|
|
277
277
|
svn.get_from_repository(source, \
|
278
|
-
File.join($recipe_config[
|
278
|
+
File.join($recipe_config[:deploy_home], target))
|
279
279
|
end
|
280
280
|
|
281
281
|
def send_dweb_command(command, options={})
|
@@ -305,7 +305,7 @@ module Deployment
|
|
305
305
|
vhost = options[:siteid] || @cdb['siteid']
|
306
306
|
options[:excludes] = options[:excludes] || ['.svn']
|
307
307
|
|
308
|
-
publisher.upload(File.join($recipe_config[
|
308
|
+
publisher.upload(File.join($recipe_config[:deploy_home], source), \
|
309
309
|
File.join('/vhosts/', vhost, target), options)
|
310
310
|
end
|
311
311
|
|
@@ -352,7 +352,7 @@ module Deployment
|
|
352
352
|
if source[0].chr == "/"
|
353
353
|
source_path = source
|
354
354
|
else
|
355
|
-
source_path = File.join($recipe_config[
|
355
|
+
source_path = File.join($recipe_config[:deploy_home], source)
|
356
356
|
end
|
357
357
|
|
358
358
|
publisher.sync(source_path, target, options)
|
@@ -371,7 +371,7 @@ module Deployment
|
|
371
371
|
Helper.validates_presence_of publisher.samba_share, "Sambe share not set"
|
372
372
|
Helper.validates_presence_of publisher.samba_mountpoints, "Sambe mountpoints not set"
|
373
373
|
|
374
|
-
publisher.copy(File.join($recipe_config[
|
374
|
+
publisher.copy(File.join($recipe_config[:deploy_home], source), \
|
375
375
|
target, options)
|
376
376
|
end
|
377
377
|
|
@@ -391,7 +391,7 @@ module Deployment
|
|
391
391
|
Helper.validates_presence_of publisher.remote_host, "Remote host not set"
|
392
392
|
Helper.validates_presence_of publisher.remote_user, "Remote user not set"
|
393
393
|
|
394
|
-
publisher.copy(File.join($recipe_config[
|
394
|
+
publisher.copy(File.join($recipe_config[:deploy_home], source), \
|
395
395
|
target, options)
|
396
396
|
end
|
397
397
|
|
@@ -442,8 +442,8 @@ module Deployment
|
|
442
442
|
properties = Processor::Properties.new
|
443
443
|
properties.properties_hash = @cdb[patch_set]
|
444
444
|
properties.assigner = assigner
|
445
|
-
properties.patch(File.join($recipe_config[
|
446
|
-
File.join($recipe_config[
|
445
|
+
properties.patch(File.join($recipe_config[:deploy_home], source), \
|
446
|
+
File.join($recipe_config[:deploy_home], target, \
|
447
447
|
File.basename(source)))
|
448
448
|
end
|
449
449
|
|
@@ -462,8 +462,8 @@ module Deployment
|
|
462
462
|
properties = Processor::Properties.new
|
463
463
|
properties.assigner = assigner
|
464
464
|
properties.properties_hash = @cdb[patch_set]
|
465
|
-
properties.substitute(File.join($recipe_config[
|
466
|
-
File.join($recipe_config[
|
465
|
+
properties.substitute(File.join($recipe_config[:deploy_home], source), \
|
466
|
+
File.join($recipe_config[:deploy_home], target, \
|
467
467
|
File.basename(source)))
|
468
468
|
end
|
469
469
|
|
@@ -479,8 +479,8 @@ module Deployment
|
|
479
479
|
assigner = options[:assigner]
|
480
480
|
end
|
481
481
|
|
482
|
-
source_path = File.join($recipe_config[
|
483
|
-
target_path = File.join($recipe_config[
|
482
|
+
source_path = File.join($recipe_config[:deploy_home], source)
|
483
|
+
target_path = File.join($recipe_config[:deploy_home], target)
|
484
484
|
|
485
485
|
properties = Processor::Properties.new
|
486
486
|
properties.assigner = assigner
|
@@ -504,8 +504,8 @@ module Deployment
|
|
504
504
|
properties = Processor::Properties.new
|
505
505
|
properties.assigner = assigner
|
506
506
|
properties.properties_hash = @cdb[patch_set]
|
507
|
-
properties.add(File.join($recipe_config[
|
508
|
-
File.join($recipe_config[
|
507
|
+
properties.add(File.join($recipe_config[:deploy_home], source), \
|
508
|
+
File.join($recipe_config[:deploy_home], target, \
|
509
509
|
File.basename(source)))
|
510
510
|
end
|
511
511
|
|
@@ -23,7 +23,7 @@ module Provider
|
|
23
23
|
|
24
24
|
def read_data(cdb_path, options={})
|
25
25
|
config = Hash.new
|
26
|
-
basedir =
|
26
|
+
basedir = File.join($recipe_config[:deploy_home],'cdb')
|
27
27
|
filename = ''
|
28
28
|
if cdb_path.nil? or cdb_path.empty?
|
29
29
|
$log.writer.error "Error while talking to configuration database, no cdb path given!"
|
data/lib/depengine/version.rb
CHANGED
metadata
CHANGED
@@ -1,20 +1,18 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: depengine
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.0.
|
5
|
-
prerelease:
|
4
|
+
version: 0.0.9
|
6
5
|
platform: ruby
|
7
6
|
authors:
|
8
7
|
- Team Automatisierung
|
9
8
|
autorequire:
|
10
9
|
bindir: bin
|
11
10
|
cert_chain: []
|
12
|
-
date: 2013-02-
|
11
|
+
date: 2013-02-28 00:00:00.000000000 Z
|
13
12
|
dependencies:
|
14
13
|
- !ruby/object:Gem::Dependency
|
15
14
|
name: json
|
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: net-ssh
|
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: net-sftp
|
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,7 +55,6 @@ dependencies:
|
|
62
55
|
- !ruby/object:Gem::Dependency
|
63
56
|
name: net-scp
|
64
57
|
requirement: !ruby/object:Gem::Requirement
|
65
|
-
none: false
|
66
58
|
requirements:
|
67
59
|
- - ! '>='
|
68
60
|
- !ruby/object:Gem::Version
|
@@ -70,7 +62,6 @@ dependencies:
|
|
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
|
@@ -78,7 +69,6 @@ dependencies:
|
|
78
69
|
- !ruby/object:Gem::Dependency
|
79
70
|
name: log4r
|
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: pony
|
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: ptools
|
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: radius
|
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: rspec
|
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: :development
|
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
|
@@ -175,6 +156,7 @@ files:
|
|
175
156
|
- bin/de
|
176
157
|
- bin/depengine
|
177
158
|
- bin/depengine.sh
|
159
|
+
- bin/full_install
|
178
160
|
- depengine.gemspec
|
179
161
|
- etc/Isolate.bak
|
180
162
|
- etc/config.yaml
|
@@ -2700,26 +2682,46 @@ files:
|
|
2700
2682
|
- spec/zip_spec.rb
|
2701
2683
|
homepage: http://www.sinnerschrader.com
|
2702
2684
|
licenses: []
|
2685
|
+
metadata: {}
|
2703
2686
|
post_install_message:
|
2704
2687
|
rdoc_options: []
|
2705
2688
|
require_paths:
|
2706
2689
|
- lib
|
2707
2690
|
required_ruby_version: !ruby/object:Gem::Requirement
|
2708
|
-
none: false
|
2709
2691
|
requirements:
|
2710
2692
|
- - ! '>='
|
2711
2693
|
- !ruby/object:Gem::Version
|
2712
2694
|
version: 1.8.7
|
2713
2695
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
2714
|
-
none: false
|
2715
2696
|
requirements:
|
2716
2697
|
- - ! '>='
|
2717
2698
|
- !ruby/object:Gem::Version
|
2718
2699
|
version: '0'
|
2719
2700
|
requirements: []
|
2720
2701
|
rubyforge_project:
|
2721
|
-
rubygems_version:
|
2702
|
+
rubygems_version: 2.0.0
|
2722
2703
|
signing_key:
|
2723
|
-
specification_version:
|
2704
|
+
specification_version: 4
|
2724
2705
|
summary: Depengine generator
|
2725
|
-
test_files:
|
2706
|
+
test_files:
|
2707
|
+
- spec/cdb_spec.rb
|
2708
|
+
- spec/deployhelper_spec.rb
|
2709
|
+
- spec/dweb_spec.rb
|
2710
|
+
- spec/fileops_spec.rb
|
2711
|
+
- spec/helper_spec.rb
|
2712
|
+
- spec/log_spec.rb
|
2713
|
+
- spec/logs/log_spec.log
|
2714
|
+
- spec/mail_spec.rb
|
2715
|
+
- spec/properties_spec.rb
|
2716
|
+
- spec/repository_spec.rb
|
2717
|
+
- spec/ssh_spec.rb
|
2718
|
+
- spec/template_spec.rb
|
2719
|
+
- spec/templates/base/sub1/single.tpl
|
2720
|
+
- spec/templates/base/sub2/multi1.tpl
|
2721
|
+
- spec/templates/base/sub2/multi2.tpl
|
2722
|
+
- spec/templates/base/sub2/multi3.tpl
|
2723
|
+
- spec/templates/single.tpl
|
2724
|
+
- spec/templates/single_hash.tpl
|
2725
|
+
- spec/watchr
|
2726
|
+
- spec/zip/source/dummy.zip
|
2727
|
+
- spec/zip_spec.rb
|