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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: bdd325f7ad038221c25a713f886371589c41f67f
4
- data.tar.gz: 9f8eca0db6a8025bdf35fd52bd8e8e2a34f965de
3
+ metadata.gz: c780fa76dfd748a6c07fa66fc4f879e4d53687bb
4
+ data.tar.gz: e70209581c0e19833fab3d6dfb1216c09fd357ee
5
5
  SHA512:
6
- metadata.gz: 1ec6cbc57993dd8fa3b95be1064868350e9fe89a1ce7082b89da03100fd37c6798e3664d4f785acba6cac5336c90911cdab5eaae14fe3877db0a2cfe651167c7
7
- data.tar.gz: 603679bd05fd0b8e59de9c589fd4626c43019d428147effba011ae030955b0e6d7a7114929473531e0fc4ef762dd6b790a6a285d41162b0c2c3344853d4e4193
6
+ metadata.gz: 078af50d4058c84e0c590cc4376a58cbb851960b7a5a8d4ba2a3bcb6c970583e3e0978208cf47d629d9b0efddeaff1cc0212737ec54a68aa1469152d5cbf41dd
7
+ data.tar.gz: 2c380031e51ccca0dff1a1bc2eba98053672acb22e601414ecbf54c9aeb1e93ccf0299540a3d48fe582ca5fb681b78632f727d373aa3cd8264ccade5c7dc47c2
@@ -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
@@ -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.rc1'
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
- execute :php, build_bootstrap_path, fetch(:app_path)
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.rc1
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-01-15 00:00:00.000000000 Z
11
+ date: 2016-03-06 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: capistrano