capistrano-symfony 1.0.0.rc1 → 1.0.0.rc2
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/CHANGELOG.md +7 -1
- data/capistrano-symfony.gemspec +1 -1
- data/lib/capistrano/tasks/symfony.rake +5 -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: c780fa76dfd748a6c07fa66fc4f879e4d53687bb
|
|
4
|
+
data.tar.gz: e70209581c0e19833fab3d6dfb1216c09fd357ee
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 078af50d4058c84e0c590cc4376a58cbb851960b7a5a8d4ba2a3bcb6c970583e3e0978208cf47d629d9b0efddeaff1cc0212737ec54a68aa1469152d5cbf41dd
|
|
7
|
+
data.tar.gz: 2c380031e51ccca0dff1a1bc2eba98053672acb22e601414ecbf54c9aeb1e93ccf0299540a3d48fe582ca5fb681b78632f727d373aa3cd8264ccade5c7dc47c2
|
data/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,12 @@
|
|
|
1
1
|
# Capistrano Symfony 1.x Changelog
|
|
2
2
|
|
|
3
3
|
|
|
4
|
+
## `1.0.0.rc2`
|
|
5
|
+
|
|
6
|
+
https://github.com/capistrano/symfony/compare/1.0.0.rc2...1.0.0.rc1
|
|
7
|
+
|
|
8
|
+
* Ensure bootstrap.php is saved in `var/` when using Symfony 3 directory structure
|
|
9
|
+
|
|
4
10
|
## `1.0.0.rc1`
|
|
5
11
|
|
|
6
12
|
https://github.com/capistrano/symfony/compare/0.4.0...1.0.0.rc1
|
|
@@ -29,4 +35,4 @@ Thanks to everyone who has filed an issue or submitted a fix
|
|
|
29
35
|
* @pborreli
|
|
30
36
|
* @wideawake
|
|
31
37
|
* @issei-m
|
|
32
|
-
* alafon
|
|
38
|
+
* @alafon
|
data/capistrano-symfony.gemspec
CHANGED
|
@@ -4,7 +4,7 @@ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
|
|
|
4
4
|
|
|
5
5
|
Gem::Specification.new do |gem|
|
|
6
6
|
gem.name = "capistrano-symfony"
|
|
7
|
-
gem.version = '1.0.0.
|
|
7
|
+
gem.version = '1.0.0.rc2'
|
|
8
8
|
gem.authors = ["Peter Mitchell"]
|
|
9
9
|
gem.email = ["pete@peterjmit.com"]
|
|
10
10
|
gem.description = %q{Symfony specific Capistrano tasks}
|
|
@@ -80,7 +80,11 @@ namespace :symfony do
|
|
|
80
80
|
task :build_bootstrap do
|
|
81
81
|
on release_roles :all do
|
|
82
82
|
within release_path do
|
|
83
|
-
|
|
83
|
+
if fetch(:symfony_directory_structure) == 2
|
|
84
|
+
execute :php, build_bootstrap_path, fetch(:app_path)
|
|
85
|
+
else
|
|
86
|
+
execute :php, build_bootstrap_path, fetch(:var_path)
|
|
87
|
+
end
|
|
84
88
|
end
|
|
85
89
|
end
|
|
86
90
|
end
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: capistrano-symfony
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.0.0.
|
|
4
|
+
version: 1.0.0.rc2
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Peter Mitchell
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2016-
|
|
11
|
+
date: 2016-03-06 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: capistrano
|