dkdeploy-php 7.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 (48) hide show
  1. checksums.yaml +7 -0
  2. data/.gitignore +19 -0
  3. data/.rubocop.yml +22 -0
  4. data/.travis.yml +12 -0
  5. data/Berksfile +3 -0
  6. data/Berksfile.lock +61 -0
  7. data/CHANGELOG.md +11 -0
  8. data/CONTRIBUTORS.md +16 -0
  9. data/Gemfile +3 -0
  10. data/LICENSE +7 -0
  11. data/README.md +84 -0
  12. data/Rakefile +5 -0
  13. data/Vagrantfile +63 -0
  14. data/config/vm/cookbooks/dkdeploy-php/attributes/default.rb +1 -0
  15. data/config/vm/cookbooks/dkdeploy-php/metadata.rb +12 -0
  16. data/config/vm/cookbooks/dkdeploy-php/recipes/default.rb +77 -0
  17. data/config/vm/cookbooks/dkdeploy-php/templates/default/web_app.conf.erb +28 -0
  18. data/dkdeploy-php.gemspec +27 -0
  19. data/features/composer.feature +20 -0
  20. data/features/db.feature +84 -0
  21. data/features/php.feature +44 -0
  22. data/features/support/env.rb +14 -0
  23. data/features/support/path.rb +30 -0
  24. data/features/support/step_definitions/steps.rb +15 -0
  25. data/features/support/templates/empty-doctrine-migration.erb +20 -0
  26. data/lib/capistrano/dkdeploy/php.rb +25 -0
  27. data/lib/dkdeploy/php/helpers/db.rb +43 -0
  28. data/lib/dkdeploy/php/helpers/http.rb +60 -0
  29. data/lib/dkdeploy/php/i18n.rb +74 -0
  30. data/lib/dkdeploy/php/tasks/composer.rake +50 -0
  31. data/lib/dkdeploy/php/tasks/db.rake +121 -0
  32. data/lib/dkdeploy/php/tasks/php.rake +90 -0
  33. data/lib/dkdeploy/php/version.rb +15 -0
  34. data/spec/fixtures/application/Capfile +8 -0
  35. data/spec/fixtures/application/Gemfile +6 -0
  36. data/spec/fixtures/application/config/deploy.rb +8 -0
  37. data/spec/fixtures/application/config/deploy/dev.rb +40 -0
  38. data/spec/fixtures/application/config/migrations/cli-config.php.erb +23 -0
  39. data/spec/fixtures/application/config/migrations/migrations.yml.erb +4 -0
  40. data/spec/fixtures/application/htdocs/.hidden/.gitkeep +0 -0
  41. data/spec/fixtures/application/htdocs/composer.json +22 -0
  42. data/spec/fixtures/application/vendor/composer.phar +0 -0
  43. data/spec/fixtures/application/vendor/doctrine-migrations.phar +0 -0
  44. data/spec/fixtures/capistrano/configuration/server_with_faulty_domain_configuration.rb +2 -0
  45. data/spec/fixtures/capistrano/configuration/server_with_valid_domain.rb +2 -0
  46. data/vendor/apc_clear.php +14 -0
  47. data/vendor/opcache_reset.php +10 -0
  48. metadata +185 -0
metadata ADDED
@@ -0,0 +1,185 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: dkdeploy-php
3
+ version: !ruby/object:Gem::Version
4
+ version: 7.0.0
5
+ platform: ruby
6
+ authors:
7
+ - Lars Tode
8
+ - Timo Webler
9
+ - Kieran Hayes
10
+ - Nicolai Reuschling
11
+ autorequire:
12
+ bindir: bin
13
+ cert_chain: []
14
+ date: 2016-07-01 00:00:00.000000000 Z
15
+ dependencies:
16
+ - !ruby/object:Gem::Dependency
17
+ name: bundler
18
+ requirement: !ruby/object:Gem::Requirement
19
+ requirements:
20
+ - - "~>"
21
+ - !ruby/object:Gem::Version
22
+ version: 1.12.5
23
+ type: :development
24
+ prerelease: false
25
+ version_requirements: !ruby/object:Gem::Requirement
26
+ requirements:
27
+ - - "~>"
28
+ - !ruby/object:Gem::Version
29
+ version: 1.12.5
30
+ - !ruby/object:Gem::Dependency
31
+ name: rake
32
+ requirement: !ruby/object:Gem::Requirement
33
+ requirements:
34
+ - - "~>"
35
+ - !ruby/object:Gem::Version
36
+ version: '11.2'
37
+ type: :development
38
+ prerelease: false
39
+ version_requirements: !ruby/object:Gem::Requirement
40
+ requirements:
41
+ - - "~>"
42
+ - !ruby/object:Gem::Version
43
+ version: '11.2'
44
+ - !ruby/object:Gem::Dependency
45
+ name: rubocop
46
+ requirement: !ruby/object:Gem::Requirement
47
+ requirements:
48
+ - - "~>"
49
+ - !ruby/object:Gem::Version
50
+ version: '0.40'
51
+ type: :development
52
+ prerelease: false
53
+ version_requirements: !ruby/object:Gem::Requirement
54
+ requirements:
55
+ - - "~>"
56
+ - !ruby/object:Gem::Version
57
+ version: '0.40'
58
+ - !ruby/object:Gem::Dependency
59
+ name: dkdeploy-test_environment
60
+ requirement: !ruby/object:Gem::Requirement
61
+ requirements:
62
+ - - "~>"
63
+ - !ruby/object:Gem::Version
64
+ version: '1.0'
65
+ type: :development
66
+ prerelease: false
67
+ version_requirements: !ruby/object:Gem::Requirement
68
+ requirements:
69
+ - - "~>"
70
+ - !ruby/object:Gem::Version
71
+ version: '1.0'
72
+ - !ruby/object:Gem::Dependency
73
+ name: dkdeploy-core
74
+ requirement: !ruby/object:Gem::Requirement
75
+ requirements:
76
+ - - "~>"
77
+ - !ruby/object:Gem::Version
78
+ version: '8.0'
79
+ type: :runtime
80
+ prerelease: false
81
+ version_requirements: !ruby/object:Gem::Requirement
82
+ requirements:
83
+ - - "~>"
84
+ - !ruby/object:Gem::Version
85
+ version: '8.0'
86
+ description: dkd PHP deployment tasks and strategies
87
+ email:
88
+ - lars.tode@dkd.de
89
+ - timo.webler@dkd.de
90
+ - kieran.hayes@dkd.de
91
+ - nicolai.reuschling@dkd.de
92
+ executables: []
93
+ extensions: []
94
+ extra_rdoc_files: []
95
+ files:
96
+ - ".gitignore"
97
+ - ".rubocop.yml"
98
+ - ".travis.yml"
99
+ - Berksfile
100
+ - Berksfile.lock
101
+ - CHANGELOG.md
102
+ - CONTRIBUTORS.md
103
+ - Gemfile
104
+ - LICENSE
105
+ - README.md
106
+ - Rakefile
107
+ - Vagrantfile
108
+ - config/vm/cookbooks/dkdeploy-php/attributes/default.rb
109
+ - config/vm/cookbooks/dkdeploy-php/metadata.rb
110
+ - config/vm/cookbooks/dkdeploy-php/recipes/default.rb
111
+ - config/vm/cookbooks/dkdeploy-php/templates/default/web_app.conf.erb
112
+ - dkdeploy-php.gemspec
113
+ - features/composer.feature
114
+ - features/db.feature
115
+ - features/php.feature
116
+ - features/support/env.rb
117
+ - features/support/path.rb
118
+ - features/support/step_definitions/steps.rb
119
+ - features/support/templates/empty-doctrine-migration.erb
120
+ - lib/capistrano/dkdeploy/php.rb
121
+ - lib/dkdeploy/php/helpers/db.rb
122
+ - lib/dkdeploy/php/helpers/http.rb
123
+ - lib/dkdeploy/php/i18n.rb
124
+ - lib/dkdeploy/php/tasks/composer.rake
125
+ - lib/dkdeploy/php/tasks/db.rake
126
+ - lib/dkdeploy/php/tasks/php.rake
127
+ - lib/dkdeploy/php/version.rb
128
+ - spec/fixtures/application/Capfile
129
+ - spec/fixtures/application/Gemfile
130
+ - spec/fixtures/application/config/deploy.rb
131
+ - spec/fixtures/application/config/deploy/dev.rb
132
+ - spec/fixtures/application/config/migrations/cli-config.php.erb
133
+ - spec/fixtures/application/config/migrations/migrations.yml.erb
134
+ - spec/fixtures/application/htdocs/.hidden/.gitkeep
135
+ - spec/fixtures/application/htdocs/composer.json
136
+ - spec/fixtures/application/vendor/composer.phar
137
+ - spec/fixtures/application/vendor/doctrine-migrations.phar
138
+ - spec/fixtures/capistrano/configuration/server_with_faulty_domain_configuration.rb
139
+ - spec/fixtures/capistrano/configuration/server_with_valid_domain.rb
140
+ - vendor/apc_clear.php
141
+ - vendor/opcache_reset.php
142
+ homepage: https://github.com/dkdeploy/dkdeploy-php
143
+ licenses:
144
+ - MIT
145
+ metadata: {}
146
+ post_install_message:
147
+ rdoc_options: []
148
+ require_paths:
149
+ - lib
150
+ required_ruby_version: !ruby/object:Gem::Requirement
151
+ requirements:
152
+ - - ">="
153
+ - !ruby/object:Gem::Version
154
+ version: '0'
155
+ required_rubygems_version: !ruby/object:Gem::Requirement
156
+ requirements:
157
+ - - ">="
158
+ - !ruby/object:Gem::Version
159
+ version: '0'
160
+ requirements: []
161
+ rubyforge_project:
162
+ rubygems_version: 2.6.4
163
+ signing_key:
164
+ specification_version: 4
165
+ summary: dkd php deployment tasks and strategies
166
+ test_files:
167
+ - features/composer.feature
168
+ - features/db.feature
169
+ - features/php.feature
170
+ - features/support/env.rb
171
+ - features/support/path.rb
172
+ - features/support/step_definitions/steps.rb
173
+ - features/support/templates/empty-doctrine-migration.erb
174
+ - spec/fixtures/application/Capfile
175
+ - spec/fixtures/application/Gemfile
176
+ - spec/fixtures/application/config/deploy.rb
177
+ - spec/fixtures/application/config/deploy/dev.rb
178
+ - spec/fixtures/application/config/migrations/cli-config.php.erb
179
+ - spec/fixtures/application/config/migrations/migrations.yml.erb
180
+ - spec/fixtures/application/htdocs/.hidden/.gitkeep
181
+ - spec/fixtures/application/htdocs/composer.json
182
+ - spec/fixtures/application/vendor/composer.phar
183
+ - spec/fixtures/application/vendor/doctrine-migrations.phar
184
+ - spec/fixtures/capistrano/configuration/server_with_faulty_domain_configuration.rb
185
+ - spec/fixtures/capistrano/configuration/server_with_valid_domain.rb