capifony 2.4.1 → 2.4.2
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 -0
- data/bin/capifony +1 -1
- data/lib/capifony_symfony2.rb +5 -4
- data/lib/symfony2/symfony.rb +2 -2
- metadata +3 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: e6f781a5144c1c21a72540ff49825d83a3546512
|
|
4
|
+
data.tar.gz: cd681575238c59a92a96fae6198cadc06b31279b
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 8cdc5e00e554a3007b48fcfd02cfd3ee478fae0232bf660f133ffe8f5faa5ec8820f39aa7e3bb6172d9d819aa12c10e64168c52a0466725a683260f188c4ae90
|
|
7
|
+
data.tar.gz: d9aabff9538a01c7c939a714d7370b5a0e7bff29faaf0db43843edb8ff5a08fdce5de66be2d3f364c3951a14ec382c6bfc9965c59ddb079c009e40c6aa6c31c2
|
data/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,10 @@
|
|
|
1
|
+
### 2.4.2 / January 7, 2014
|
|
2
|
+
|
|
3
|
+
* Fixed: add null value(tylda) to regular expression (#447)
|
|
4
|
+
* Fixed: move set_permission task after cache warmup (#443, #453)
|
|
5
|
+
* Removed: unneeded overwrite of assetic `write_to` parameter when dumping
|
|
6
|
+
assets (#451)
|
|
7
|
+
|
|
1
8
|
### 2.4.1 / November 19, 2013
|
|
2
9
|
|
|
3
10
|
* Fixed: Set facl permissions only once
|
data/bin/capifony
CHANGED
data/lib/capifony_symfony2.rb
CHANGED
|
@@ -294,10 +294,6 @@ module Capifony
|
|
|
294
294
|
end
|
|
295
295
|
end
|
|
296
296
|
|
|
297
|
-
if use_set_permissions
|
|
298
|
-
symfony.deploy.set_permissions
|
|
299
|
-
end
|
|
300
|
-
|
|
301
297
|
if model_manager == "propel"
|
|
302
298
|
symfony.propel.build.model
|
|
303
299
|
end
|
|
@@ -330,6 +326,11 @@ module Capifony
|
|
|
330
326
|
end
|
|
331
327
|
symfony.project.clear_controllers
|
|
332
328
|
end
|
|
329
|
+
|
|
330
|
+
if use_set_permissions
|
|
331
|
+
# Set permissions after all cache files have been created
|
|
332
|
+
symfony.deploy.set_permissions
|
|
333
|
+
end
|
|
333
334
|
end
|
|
334
335
|
|
|
335
336
|
before "deploy:update_code" do
|
data/lib/symfony2/symfony.rb
CHANGED
|
@@ -29,7 +29,7 @@ namespace :symfony do
|
|
|
29
29
|
task :update_version, :roles => :app, :except => { :no_release => true } do
|
|
30
30
|
capifony_pretty_print "--> Updating assets version (in config.yml)"
|
|
31
31
|
|
|
32
|
-
run "#{try_sudo} sed -i 's/\\(assets_version:[ ]*\\)\\([a-zA-Z0-9_]*\\)\\(.*\\)$/\\1#{real_revision.to_s[0,7]}\\3/g' #{latest_release}/#{app_config_path}/config.yml"
|
|
32
|
+
run "#{try_sudo} sed -i 's/\\(assets_version:[ ]*\\)\\([a-zA-Z0-9_~]*\\)\\(.*\\)$/\\1#{real_revision.to_s[0,7]}\\3/g' #{latest_release}/#{app_config_path}/config.yml"
|
|
33
33
|
capifony_puts_ok
|
|
34
34
|
end
|
|
35
35
|
|
|
@@ -57,7 +57,7 @@ namespace :symfony do
|
|
|
57
57
|
task :dump, :roles => :app, :except => { :no_release => true } do
|
|
58
58
|
capifony_pretty_print "--> Dumping all assets to the filesystem"
|
|
59
59
|
|
|
60
|
-
run "#{try_sudo} sh -c 'cd #{latest_release} && #{php_bin} #{symfony_console} assetic:dump #{console_options}
|
|
60
|
+
run "#{try_sudo} sh -c 'cd #{latest_release} && #{php_bin} #{symfony_console} assetic:dump #{console_options}'"
|
|
61
61
|
capifony_puts_ok
|
|
62
62
|
end
|
|
63
63
|
end
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: capifony
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 2.4.
|
|
4
|
+
version: 2.4.2
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Konstantin Kudryashov
|
|
@@ -9,7 +9,7 @@ authors:
|
|
|
9
9
|
autorequire:
|
|
10
10
|
bindir: bin
|
|
11
11
|
cert_chain: []
|
|
12
|
-
date:
|
|
12
|
+
date: 2014-01-07 00:00:00.000000000 Z
|
|
13
13
|
dependencies:
|
|
14
14
|
- !ruby/object:Gem::Dependency
|
|
15
15
|
name: capistrano
|
|
@@ -140,7 +140,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
140
140
|
version: '0'
|
|
141
141
|
requirements: []
|
|
142
142
|
rubyforge_project: capifony
|
|
143
|
-
rubygems_version: 2.
|
|
143
|
+
rubygems_version: 2.1.11
|
|
144
144
|
signing_key:
|
|
145
145
|
specification_version: 4
|
|
146
146
|
summary: Deploying symfony PHP applications with Capistrano.
|