capistrano-symfony-doctrine 0.2.7 → 0.2.8
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/Gemfile.lock +1 -1
- data/capistrano-symfony-doctrine.gemspec +1 -1
- data/lib/capistrano/tasks/symfony-doctrine.rake +4 -4
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: f456f2a02a701394409a90a539db4cd7fc7f8c75
|
4
|
+
data.tar.gz: b3f0d2a729bd4e4ef4a9de1fa7976304434287a9
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: aa95acc2e6d516bf0b08ce7e147f0a7bc2735de5bd9e3eae5c39cd16045a4984a0459598395db64a471aebff2a3a9c29fd98a59b1047b5e25feb17867b24f3c9
|
7
|
+
data.tar.gz: f5741b695384598ad5b48c1ef49a7b353219d8242c7397871df4e554fd452f0b78e138928d43e1a8a4340c0826030eedcd33f5081c6356018275ad4f3e4648a4
|
data/Gemfile.lock
CHANGED
@@ -3,26 +3,26 @@ namespace :symfony do
|
|
3
3
|
desc "Run app/console doctrine:migrations:migrate"
|
4
4
|
task :migrations do
|
5
5
|
on fetch(:symfony_doctrine_migrations_servers) do
|
6
|
-
execute "cd '#{release_path}'; app/console doctrine:migrations:migrate
|
6
|
+
execute "cd '#{release_path}'; app/console doctrine:migrations:migrate #{fetch(:symfony_doctrine_migrations_flags)}"
|
7
7
|
end
|
8
8
|
end
|
9
9
|
namespace :cache do
|
10
10
|
desc "Run app/console doctrine:cache:clear-metadata"
|
11
11
|
task :clear_metadata do
|
12
12
|
on fetch(:symfony_doctrine_cache_clear_metadata_servers) do
|
13
|
-
execute "cd '#{release_path}'; app/console doctrine:cache:clear-metadata
|
13
|
+
execute "cd '#{release_path}'; app/console doctrine:cache:clear-metadata #{fetch(:symfony_doctrine_cache_clear_metadata_flags)}"
|
14
14
|
end
|
15
15
|
end
|
16
16
|
desc "Run app/console doctrine:cache:clear-query"
|
17
17
|
task :clear_query do
|
18
18
|
on fetch(:symfony_doctrine_cache_clear_query_servers) do
|
19
|
-
execute "cd '#{release_path}'; app/console doctrine:cache:clear-query
|
19
|
+
execute "cd '#{release_path}'; app/console doctrine:cache:clear-query #{fetch(:symfony_doctrine_cache_clear_query_flags)}"
|
20
20
|
end
|
21
21
|
end
|
22
22
|
desc "Run app/console doctrine:cache:clear-result"
|
23
23
|
task :clear_result do
|
24
24
|
on fetch(:symfony_doctrine_cache_clear_result_servers) do
|
25
|
-
execute "cd '#{release_path}'; app/console doctrine:cache:clear-result
|
25
|
+
execute "cd '#{release_path}'; app/console doctrine:cache:clear-result #{fetch(:symfony_doctrine_cache_clear_result_flags)}"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|