dkdeploy-core 8.0.0

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.
Files changed (84) hide show
  1. checksums.yaml +7 -0
  2. data/.gitignore +20 -0
  3. data/.rubocop.yml +18 -0
  4. data/Berksfile +3 -0
  5. data/Berksfile.lock +46 -0
  6. data/CONTRIBUTORS.md +16 -0
  7. data/Gemfile +4 -0
  8. data/LICENSE +7 -0
  9. data/README.md +88 -0
  10. data/Rakefile +5 -0
  11. data/Vagrantfile +60 -0
  12. data/config/vm/cookbooks/dkdeploy-core/metadata.rb +10 -0
  13. data/config/vm/cookbooks/dkdeploy-core/recipes/default.rb +56 -0
  14. data/dkdeploy-core.gemspec +34 -0
  15. data/features/apache.feature +35 -0
  16. data/features/assets.feature +100 -0
  17. data/features/bower.feature +52 -0
  18. data/features/current_folder.feature +17 -0
  19. data/features/db.feature +93 -0
  20. data/features/deploy.feature +48 -0
  21. data/features/enhanced_symlinks.feature +17 -0
  22. data/features/error_handlers.feature +59 -0
  23. data/features/file_access.feature +120 -0
  24. data/features/maintenance.feature +25 -0
  25. data/features/project_version.feature +42 -0
  26. data/features/support/env.rb +22 -0
  27. data/features/utils.feature +81 -0
  28. data/lib/capistrano/copy.rb +2 -0
  29. data/lib/capistrano/dkdeploy/core.rb +88 -0
  30. data/lib/dkdeploy/constants.rb +156 -0
  31. data/lib/dkdeploy/copy.rb +121 -0
  32. data/lib/dkdeploy/core/version.rb +15 -0
  33. data/lib/dkdeploy/dsl.rb +23 -0
  34. data/lib/dkdeploy/helpers/assets.rb +50 -0
  35. data/lib/dkdeploy/helpers/common.rb +31 -0
  36. data/lib/dkdeploy/helpers/db.rb +49 -0
  37. data/lib/dkdeploy/helpers/file_system.rb +76 -0
  38. data/lib/dkdeploy/i18n.rb +143 -0
  39. data/lib/dkdeploy/interaction_handler/password.rb +27 -0
  40. data/lib/dkdeploy/rollback_manager.rb +18 -0
  41. data/lib/dkdeploy/tasks/apache.rake +29 -0
  42. data/lib/dkdeploy/tasks/assets.rake +96 -0
  43. data/lib/dkdeploy/tasks/bower.rake +54 -0
  44. data/lib/dkdeploy/tasks/copy.rake +26 -0
  45. data/lib/dkdeploy/tasks/current_folder.rake +16 -0
  46. data/lib/dkdeploy/tasks/db.rake +412 -0
  47. data/lib/dkdeploy/tasks/deploy.rake +77 -0
  48. data/lib/dkdeploy/tasks/enhanced_symlinks.rake +74 -0
  49. data/lib/dkdeploy/tasks/fail.rake +8 -0
  50. data/lib/dkdeploy/tasks/file_access.rake +89 -0
  51. data/lib/dkdeploy/tasks/maintenance.rake +73 -0
  52. data/lib/dkdeploy/tasks/project_version.rake +32 -0
  53. data/lib/dkdeploy/tasks/utils.rake +141 -0
  54. data/lib/dkdeploy.rb +1 -0
  55. data/spec/fixtures/application/Capfile +11 -0
  56. data/spec/fixtures/application/Gemfile +11 -0
  57. data/spec/fixtures/application/Version +1 -0
  58. data/spec/fixtures/application/config/assets_exclude_file.txt +1 -0
  59. data/spec/fixtures/application/config/deploy/dev.rb +35 -0
  60. data/spec/fixtures/application/config/deploy.rb +18 -0
  61. data/spec/fixtures/application/config/etc/apache2/conf/.htaccess.erb +12 -0
  62. data/spec/fixtures/application/config/etc/apache2/conf/dev.htaccess.erb +3 -0
  63. data/spec/fixtures/application/config/preseed/default_content.sql.gz +0 -0
  64. data/spec/fixtures/application/config/preseed/default_structure.sql.gz +0 -0
  65. data/spec/fixtures/application/config/preseed/fileadmin.tar.gz +0 -0
  66. data/spec/fixtures/application/config/preseed/uploads.tar.gz +0 -0
  67. data/spec/fixtures/application/htdocs/.hidden/.gitkeep +0 -0
  68. data/spec/fixtures/application/htdocs/Gemfile +0 -0
  69. data/spec/fixtures/application/htdocs/bower.json +15 -0
  70. data/spec/fixtures/application/htdocs/catalog/.hidden/.gitkeep +0 -0
  71. data/spec/fixtures/application/htdocs/catalog/index.html +1 -0
  72. data/spec/fixtures/application/htdocs/index.html +1 -0
  73. data/spec/fixtures/application/htdocs/stylesheets/test1/config.rb +3 -0
  74. data/spec/fixtures/application/htdocs/stylesheets/test1/css/.gitkeep +0 -0
  75. data/spec/fixtures/application/htdocs/stylesheets/test1/src/source.scss +5 -0
  76. data/spec/fixtures/application/htdocs/stylesheets/test2/config.rb +3 -0
  77. data/spec/fixtures/application/htdocs/stylesheets/test2/css/.gitkeep +0 -0
  78. data/spec/fixtures/application/htdocs/stylesheets/test2/src/source.scss +5 -0
  79. data/spec/fixtures/application/temp/dkdeploy_core.sql.gz +0 -0
  80. data/spec/fixtures/capistrano/configuration/add_output_after_create_symlink.rb +7 -0
  81. data/spec/fixtures/capistrano/configuration/custom_compass_sources.rb +4 -0
  82. data/spec/fixtures/capistrano/configuration/custom_file_access.rb +13 -0
  83. data/spec/fixtures/capistrano/configuration/default_deployment_behaviour.rb +9 -0
  84. metadata +346 -0
data/lib/dkdeploy.rb ADDED
@@ -0,0 +1 @@
1
+ require 'dkdeploy/core/version'
@@ -0,0 +1,11 @@
1
+ # Load DSL and Setup Up Stages
2
+ require 'capistrano/setup'
3
+
4
+ # Includes default deployment tasks
5
+ require 'capistrano/deploy'
6
+
7
+ # Include dkdeploy gem
8
+ require 'dkdeploy'
9
+
10
+ # Includes dkdeploy deployment tasks
11
+ require 'capistrano/dkdeploy/core'
@@ -0,0 +1,11 @@
1
+ source 'https://rubygems.org'
2
+
3
+ gem 'dkdeploy-core', path: '../../'
4
+
5
+ # Gem for task "assets:compile_compass"
6
+ gem 'compass', '~> 1.0.3'
7
+
8
+ # for debugging only
9
+ gem 'pry', '~> 0.10.0'
10
+
11
+ gem 'bundler', '~> 1.12.5'
@@ -0,0 +1 @@
1
+ 1.0.0
@@ -0,0 +1 @@
1
+ should_be_excluded.txt
@@ -0,0 +1,35 @@
1
+ set :deploy_to, '/var/www/dkdeploy'
2
+ server 'dkdeploy-core.dev', roles: %w(web app backend), primary: true
3
+
4
+ # no ssh compression on the dev stage
5
+ set :ssh_options, {
6
+ compression: 'none'
7
+ }
8
+
9
+ ssh_key_files = Dir.glob(File.join(Dir.getwd, '..', '..', '.vagrant', 'machines', '**', 'virtualbox', 'private_key'))
10
+ unless ssh_key_files.empty?
11
+ # Define generated ssh key files
12
+ set :ssh_options, fetch(:ssh_options).merge(
13
+ {
14
+ user: 'vagrant',
15
+ keys: ssh_key_files
16
+ }
17
+ )
18
+ end
19
+
20
+ set :copy_source, 'htdocs'
21
+ set :copy_exclude, %w(
22
+ Gemfile*
23
+ .hidden
24
+ **/.hidden
25
+ )
26
+
27
+ # version file path
28
+ set :version_file_path, ''
29
+
30
+ # default file owner/group for dev stage
31
+ set :default_file_access_owner_of_shared_path, 'vagrant'
32
+ set :default_file_access_owner_of_release_path, 'vagrant'
33
+
34
+ set :default_file_access_group_of_shared_path, 'vagrant'
35
+ set :default_file_access_group_of_release_path, 'vagrant'
@@ -0,0 +1,18 @@
1
+ set :application, 'test_app'
2
+
3
+ SSHKit.config.command_map.prefix[:compass].push 'bundle exec'
4
+ SSHKit.config.command_map.prefix[:chown].push 'sudo'
5
+ SSHKit.config.command_map.prefix[:chgrp].push 'sudo'
6
+ SSHKit.config.command_map.prefix[:chmod].push 'sudo'
7
+
8
+ set :asset_folders, %w(fileadmin uploads)
9
+ set :asset_default_content, %w(fileadmin uploads)
10
+ set :asset_exclude_file, 'config/assets_exclude_file.txt'
11
+
12
+ set :format_options, command_output: true
13
+ set :log_level, :debug
14
+ set :format, :pretty
15
+
16
+ set :asset_default_content, %w(fileadmin uploads)
17
+ set :asset_exclude_file, 'config/assets_exclude_file.txt'
18
+ set :asset_folders, %w(fileadmin uploads)
@@ -0,0 +1,12 @@
1
+ <FilesMatch "index.php">
2
+ Allow from all
3
+ </FilesMatch>
4
+ <%=
5
+ current_stage = fetch(:stage).to_s
6
+ current_stage_htaccess_file_configuration_path = current_stage + '.htaccess.erb'
7
+ sub_template_file_path = File.expand_path File.join(apache_configuration_path, current_stage_htaccess_file_configuration_path)
8
+ if File.exists? sub_template_file_path
9
+ sub_template = ERB.new File.read(sub_template_file_path)
10
+ sub_template.result
11
+ end
12
+ %>
@@ -0,0 +1,3 @@
1
+ <Files "favicon.ico">
2
+ Deny from all
3
+ </Files>
File without changes
File without changes
@@ -0,0 +1,15 @@
1
+ {
2
+ "name": "dkdeploy-core-bower-fixture-file",
3
+ "version": "0.0.1",
4
+ "authors": [
5
+ "Random Coder <mail@example.com>"
6
+ ],
7
+ "description": "This is a fixture bower.js file for dkdeploy-core",
8
+ "moduleType": [
9
+ "globals"
10
+ ],
11
+ "license": "MIT",
12
+ "dependencies": {
13
+ "jquery": "2.1.4"
14
+ }
15
+ }
@@ -0,0 +1 @@
1
+ Hello World
@@ -0,0 +1 @@
1
+ Hello World
@@ -0,0 +1,3 @@
1
+ project_type = :stand_alone
2
+ css_dir = 'css'
3
+ sass_dir = 'src'
@@ -0,0 +1,5 @@
1
+ ul {
2
+ li{
3
+ color: green;
4
+ }
5
+ }
@@ -0,0 +1,3 @@
1
+ project_type = :stand_alone
2
+ css_dir = 'css'
3
+ sass_dir = 'src'
@@ -0,0 +1,5 @@
1
+ ul {
2
+ li{
3
+ color: green;
4
+ }
5
+ }
@@ -0,0 +1,7 @@
1
+
2
+ after 'deploy:symlink:release', '--dummy-task-name' do
3
+ run_locally do
4
+ # rubocop:disable UnneededPercentQ
5
+ info %q(Task 'deploy:symlink:release' executed)
6
+ end
7
+ end
@@ -0,0 +1,4 @@
1
+ set :compass_sources, %w(
2
+ htdocs/stylesheets/test1
3
+ htdocs/stylesheets/test2
4
+ )
@@ -0,0 +1,13 @@
1
+ # custom file access properties
2
+ set :custom_file_access, {
3
+ app: {
4
+ release_path: {
5
+ catalog: {
6
+ owner: 'test-user',
7
+ group: 'test-group',
8
+ mode: 'u+rwx,g+rwx,o-wx',
9
+ recursive: true
10
+ }
11
+ }
12
+ }
13
+ }
@@ -0,0 +1,9 @@
1
+ # Deploy workflow. See http://capistranorb.com/documentation/getting-started/flow/
2
+ after 'deploy:started', 'apache:htaccess'
3
+ after 'deploy:started', 'assets:compile_compass'
4
+ after 'deploy:updated', 'project_version:update'
5
+ after 'deploy:updated', 'file_access:set_owner_group'
6
+ after 'deploy:updated', 'file_access:set_permissions'
7
+ after 'deploy:updated', 'file_access:set_custom_access'
8
+ after 'deploy:updated', 'maintenance:enable'
9
+ after 'deploy:finished', 'maintenance:disable'
metadata ADDED
@@ -0,0 +1,346 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: dkdeploy-core
3
+ version: !ruby/object:Gem::Version
4
+ version: 8.0.0
5
+ platform: ruby
6
+ authors:
7
+ - Lars Tode
8
+ - Timo Webler
9
+ - Kieran Hayes
10
+ - Nicolai Reuschling
11
+ - Johannes Goslar
12
+ - Luka Lüdicke
13
+ autorequire:
14
+ bindir: bin
15
+ cert_chain: []
16
+ date: 2016-06-20 00:00:00.000000000 Z
17
+ dependencies:
18
+ - !ruby/object:Gem::Dependency
19
+ name: bundler
20
+ requirement: !ruby/object:Gem::Requirement
21
+ requirements:
22
+ - - "~>"
23
+ - !ruby/object:Gem::Version
24
+ version: 1.12.5
25
+ type: :development
26
+ prerelease: false
27
+ version_requirements: !ruby/object:Gem::Requirement
28
+ requirements:
29
+ - - "~>"
30
+ - !ruby/object:Gem::Version
31
+ version: 1.12.5
32
+ - !ruby/object:Gem::Dependency
33
+ name: rake
34
+ requirement: !ruby/object:Gem::Requirement
35
+ requirements:
36
+ - - "~>"
37
+ - !ruby/object:Gem::Version
38
+ version: '11.2'
39
+ type: :development
40
+ prerelease: false
41
+ version_requirements: !ruby/object:Gem::Requirement
42
+ requirements:
43
+ - - "~>"
44
+ - !ruby/object:Gem::Version
45
+ version: '11.2'
46
+ - !ruby/object:Gem::Dependency
47
+ name: rspec
48
+ requirement: !ruby/object:Gem::Requirement
49
+ requirements:
50
+ - - "~>"
51
+ - !ruby/object:Gem::Version
52
+ version: '3.4'
53
+ type: :development
54
+ prerelease: false
55
+ version_requirements: !ruby/object:Gem::Requirement
56
+ requirements:
57
+ - - "~>"
58
+ - !ruby/object:Gem::Version
59
+ version: '3.4'
60
+ - !ruby/object:Gem::Dependency
61
+ name: cucumber
62
+ requirement: !ruby/object:Gem::Requirement
63
+ requirements:
64
+ - - "~>"
65
+ - !ruby/object:Gem::Version
66
+ version: '2.4'
67
+ type: :development
68
+ prerelease: false
69
+ version_requirements: !ruby/object:Gem::Requirement
70
+ requirements:
71
+ - - "~>"
72
+ - !ruby/object:Gem::Version
73
+ version: '2.4'
74
+ - !ruby/object:Gem::Dependency
75
+ name: rubocop
76
+ requirement: !ruby/object:Gem::Requirement
77
+ requirements:
78
+ - - "~>"
79
+ - !ruby/object:Gem::Version
80
+ version: '0.40'
81
+ type: :development
82
+ prerelease: false
83
+ version_requirements: !ruby/object:Gem::Requirement
84
+ requirements:
85
+ - - "~>"
86
+ - !ruby/object:Gem::Version
87
+ version: '0.40'
88
+ - !ruby/object:Gem::Dependency
89
+ name: aruba
90
+ requirement: !ruby/object:Gem::Requirement
91
+ requirements:
92
+ - - "~>"
93
+ - !ruby/object:Gem::Version
94
+ version: 0.14.1
95
+ type: :development
96
+ prerelease: false
97
+ version_requirements: !ruby/object:Gem::Requirement
98
+ requirements:
99
+ - - "~>"
100
+ - !ruby/object:Gem::Version
101
+ version: 0.14.1
102
+ - !ruby/object:Gem::Dependency
103
+ name: mysql2
104
+ requirement: !ruby/object:Gem::Requirement
105
+ requirements:
106
+ - - "~>"
107
+ - !ruby/object:Gem::Version
108
+ version: '0.3'
109
+ type: :development
110
+ prerelease: false
111
+ version_requirements: !ruby/object:Gem::Requirement
112
+ requirements:
113
+ - - "~>"
114
+ - !ruby/object:Gem::Version
115
+ version: '0.3'
116
+ - !ruby/object:Gem::Dependency
117
+ name: pry
118
+ requirement: !ruby/object:Gem::Requirement
119
+ requirements:
120
+ - - "~>"
121
+ - !ruby/object:Gem::Version
122
+ version: 0.10.3
123
+ type: :development
124
+ prerelease: false
125
+ version_requirements: !ruby/object:Gem::Requirement
126
+ requirements:
127
+ - - "~>"
128
+ - !ruby/object:Gem::Version
129
+ version: 0.10.3
130
+ - !ruby/object:Gem::Dependency
131
+ name: dkdeploy-test_environment
132
+ requirement: !ruby/object:Gem::Requirement
133
+ requirements:
134
+ - - "~>"
135
+ - !ruby/object:Gem::Version
136
+ version: '1.0'
137
+ type: :development
138
+ prerelease: false
139
+ version_requirements: !ruby/object:Gem::Requirement
140
+ requirements:
141
+ - - "~>"
142
+ - !ruby/object:Gem::Version
143
+ version: '1.0'
144
+ - !ruby/object:Gem::Dependency
145
+ name: capistrano
146
+ requirement: !ruby/object:Gem::Requirement
147
+ requirements:
148
+ - - "~>"
149
+ - !ruby/object:Gem::Version
150
+ version: 3.5.0
151
+ type: :runtime
152
+ prerelease: false
153
+ version_requirements: !ruby/object:Gem::Requirement
154
+ requirements:
155
+ - - "~>"
156
+ - !ruby/object:Gem::Version
157
+ version: 3.5.0
158
+ - !ruby/object:Gem::Dependency
159
+ name: sshkit
160
+ requirement: !ruby/object:Gem::Requirement
161
+ requirements:
162
+ - - '='
163
+ - !ruby/object:Gem::Version
164
+ version: 1.10.0
165
+ type: :runtime
166
+ prerelease: false
167
+ version_requirements: !ruby/object:Gem::Requirement
168
+ requirements:
169
+ - - '='
170
+ - !ruby/object:Gem::Version
171
+ version: 1.10.0
172
+ - !ruby/object:Gem::Dependency
173
+ name: highline
174
+ requirement: !ruby/object:Gem::Requirement
175
+ requirements:
176
+ - - "~>"
177
+ - !ruby/object:Gem::Version
178
+ version: 1.7.1
179
+ type: :runtime
180
+ prerelease: false
181
+ version_requirements: !ruby/object:Gem::Requirement
182
+ requirements:
183
+ - - "~>"
184
+ - !ruby/object:Gem::Version
185
+ version: 1.7.1
186
+ description: dkd basic deployment tasks and strategies
187
+ email:
188
+ - lars.tode@dkd.de
189
+ - timo.webler@dkd.de
190
+ - kieran.hayes@dkd.de
191
+ - nicolai.reuschling@dkd.de
192
+ - johannes.goslar@dkd.de
193
+ - luka.luedicke@dkd.de
194
+ executables: []
195
+ extensions: []
196
+ extra_rdoc_files: []
197
+ files:
198
+ - ".gitignore"
199
+ - ".rubocop.yml"
200
+ - Berksfile
201
+ - Berksfile.lock
202
+ - CONTRIBUTORS.md
203
+ - Gemfile
204
+ - LICENSE
205
+ - README.md
206
+ - Rakefile
207
+ - Vagrantfile
208
+ - config/vm/cookbooks/dkdeploy-core/metadata.rb
209
+ - config/vm/cookbooks/dkdeploy-core/recipes/default.rb
210
+ - dkdeploy-core.gemspec
211
+ - features/apache.feature
212
+ - features/assets.feature
213
+ - features/bower.feature
214
+ - features/current_folder.feature
215
+ - features/db.feature
216
+ - features/deploy.feature
217
+ - features/enhanced_symlinks.feature
218
+ - features/error_handlers.feature
219
+ - features/file_access.feature
220
+ - features/maintenance.feature
221
+ - features/project_version.feature
222
+ - features/support/env.rb
223
+ - features/utils.feature
224
+ - lib/capistrano/copy.rb
225
+ - lib/capistrano/dkdeploy/core.rb
226
+ - lib/dkdeploy.rb
227
+ - lib/dkdeploy/constants.rb
228
+ - lib/dkdeploy/copy.rb
229
+ - lib/dkdeploy/core/version.rb
230
+ - lib/dkdeploy/dsl.rb
231
+ - lib/dkdeploy/helpers/assets.rb
232
+ - lib/dkdeploy/helpers/common.rb
233
+ - lib/dkdeploy/helpers/db.rb
234
+ - lib/dkdeploy/helpers/file_system.rb
235
+ - lib/dkdeploy/i18n.rb
236
+ - lib/dkdeploy/interaction_handler/password.rb
237
+ - lib/dkdeploy/rollback_manager.rb
238
+ - lib/dkdeploy/tasks/apache.rake
239
+ - lib/dkdeploy/tasks/assets.rake
240
+ - lib/dkdeploy/tasks/bower.rake
241
+ - lib/dkdeploy/tasks/copy.rake
242
+ - lib/dkdeploy/tasks/current_folder.rake
243
+ - lib/dkdeploy/tasks/db.rake
244
+ - lib/dkdeploy/tasks/deploy.rake
245
+ - lib/dkdeploy/tasks/enhanced_symlinks.rake
246
+ - lib/dkdeploy/tasks/fail.rake
247
+ - lib/dkdeploy/tasks/file_access.rake
248
+ - lib/dkdeploy/tasks/maintenance.rake
249
+ - lib/dkdeploy/tasks/project_version.rake
250
+ - lib/dkdeploy/tasks/utils.rake
251
+ - spec/fixtures/application/Capfile
252
+ - spec/fixtures/application/Gemfile
253
+ - spec/fixtures/application/Version
254
+ - spec/fixtures/application/config/assets_exclude_file.txt
255
+ - spec/fixtures/application/config/deploy.rb
256
+ - spec/fixtures/application/config/deploy/dev.rb
257
+ - spec/fixtures/application/config/etc/apache2/conf/.htaccess.erb
258
+ - spec/fixtures/application/config/etc/apache2/conf/dev.htaccess.erb
259
+ - spec/fixtures/application/config/preseed/default_content.sql.gz
260
+ - spec/fixtures/application/config/preseed/default_structure.sql.gz
261
+ - spec/fixtures/application/config/preseed/fileadmin.tar.gz
262
+ - spec/fixtures/application/config/preseed/uploads.tar.gz
263
+ - spec/fixtures/application/htdocs/.hidden/.gitkeep
264
+ - spec/fixtures/application/htdocs/Gemfile
265
+ - spec/fixtures/application/htdocs/bower.json
266
+ - spec/fixtures/application/htdocs/catalog/.hidden/.gitkeep
267
+ - spec/fixtures/application/htdocs/catalog/index.html
268
+ - spec/fixtures/application/htdocs/index.html
269
+ - spec/fixtures/application/htdocs/stylesheets/test1/config.rb
270
+ - spec/fixtures/application/htdocs/stylesheets/test1/css/.gitkeep
271
+ - spec/fixtures/application/htdocs/stylesheets/test1/src/source.scss
272
+ - spec/fixtures/application/htdocs/stylesheets/test2/config.rb
273
+ - spec/fixtures/application/htdocs/stylesheets/test2/css/.gitkeep
274
+ - spec/fixtures/application/htdocs/stylesheets/test2/src/source.scss
275
+ - spec/fixtures/application/temp/dkdeploy_core.sql.gz
276
+ - spec/fixtures/capistrano/configuration/add_output_after_create_symlink.rb
277
+ - spec/fixtures/capistrano/configuration/custom_compass_sources.rb
278
+ - spec/fixtures/capistrano/configuration/custom_file_access.rb
279
+ - spec/fixtures/capistrano/configuration/default_deployment_behaviour.rb
280
+ homepage: https://redmine.dkd.de/projects/dkdeploy/wiki
281
+ licenses:
282
+ - MIT
283
+ metadata: {}
284
+ post_install_message:
285
+ rdoc_options: []
286
+ require_paths:
287
+ - lib
288
+ required_ruby_version: !ruby/object:Gem::Requirement
289
+ requirements:
290
+ - - ">="
291
+ - !ruby/object:Gem::Version
292
+ version: '0'
293
+ required_rubygems_version: !ruby/object:Gem::Requirement
294
+ requirements:
295
+ - - ">="
296
+ - !ruby/object:Gem::Version
297
+ version: '0'
298
+ requirements: []
299
+ rubyforge_project:
300
+ rubygems_version: 2.6.4
301
+ signing_key:
302
+ specification_version: 4
303
+ summary: dkd basic deployment tasks and strategies
304
+ test_files:
305
+ - features/apache.feature
306
+ - features/assets.feature
307
+ - features/bower.feature
308
+ - features/current_folder.feature
309
+ - features/db.feature
310
+ - features/deploy.feature
311
+ - features/enhanced_symlinks.feature
312
+ - features/error_handlers.feature
313
+ - features/file_access.feature
314
+ - features/maintenance.feature
315
+ - features/project_version.feature
316
+ - features/support/env.rb
317
+ - features/utils.feature
318
+ - spec/fixtures/application/Capfile
319
+ - spec/fixtures/application/Gemfile
320
+ - spec/fixtures/application/Version
321
+ - spec/fixtures/application/config/assets_exclude_file.txt
322
+ - spec/fixtures/application/config/deploy.rb
323
+ - spec/fixtures/application/config/deploy/dev.rb
324
+ - spec/fixtures/application/config/etc/apache2/conf/.htaccess.erb
325
+ - spec/fixtures/application/config/etc/apache2/conf/dev.htaccess.erb
326
+ - spec/fixtures/application/config/preseed/default_content.sql.gz
327
+ - spec/fixtures/application/config/preseed/default_structure.sql.gz
328
+ - spec/fixtures/application/config/preseed/fileadmin.tar.gz
329
+ - spec/fixtures/application/config/preseed/uploads.tar.gz
330
+ - spec/fixtures/application/htdocs/.hidden/.gitkeep
331
+ - spec/fixtures/application/htdocs/Gemfile
332
+ - spec/fixtures/application/htdocs/bower.json
333
+ - spec/fixtures/application/htdocs/catalog/.hidden/.gitkeep
334
+ - spec/fixtures/application/htdocs/catalog/index.html
335
+ - spec/fixtures/application/htdocs/index.html
336
+ - spec/fixtures/application/htdocs/stylesheets/test1/config.rb
337
+ - spec/fixtures/application/htdocs/stylesheets/test1/css/.gitkeep
338
+ - spec/fixtures/application/htdocs/stylesheets/test1/src/source.scss
339
+ - spec/fixtures/application/htdocs/stylesheets/test2/config.rb
340
+ - spec/fixtures/application/htdocs/stylesheets/test2/css/.gitkeep
341
+ - spec/fixtures/application/htdocs/stylesheets/test2/src/source.scss
342
+ - spec/fixtures/application/temp/dkdeploy_core.sql.gz
343
+ - spec/fixtures/capistrano/configuration/add_output_after_create_symlink.rb
344
+ - spec/fixtures/capistrano/configuration/custom_compass_sources.rb
345
+ - spec/fixtures/capistrano/configuration/custom_file_access.rb
346
+ - spec/fixtures/capistrano/configuration/default_deployment_behaviour.rb