capifony 2.0.0 → 2.0.1
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.
- data/CHANGELOG +4 -0
- data/README +3 -2
- data/lib/symfony2.rb +1 -1
- metadata +5 -5
data/CHANGELOG
CHANGED
data/README
CHANGED
@@ -5,7 +5,7 @@ Capistrano is an open source tool for running scripts on multiple servers. It’
|
|
5
5
|
|
6
6
|
## Prerequisites ##
|
7
7
|
|
8
|
-
- Symfony 1.4+
|
8
|
+
- Symfony 1.4+ OR Symfony2
|
9
9
|
- Must have SSH access to the server you are deploying to.
|
10
10
|
- Must have Ruby and RubyGems installed on your machine (not required for deployment server)’
|
11
11
|
|
@@ -28,7 +28,8 @@ CD to your project directory & run:
|
|
28
28
|
|
29
29
|
capifony .
|
30
30
|
|
31
|
-
This will create `Capfile` in your project root & `deploy.rb` config file in `config`
|
31
|
+
This will create `Capfile` in your project root & `deploy.rb` config file in `config` (for symfony)
|
32
|
+
and `app/config` (for Symfony2) directory
|
32
33
|
|
33
34
|
Fill up your `config/deploy.rb` with your server connection data
|
34
35
|
|
data/lib/symfony2.rb
CHANGED
@@ -90,7 +90,7 @@ namespace :symfony do
|
|
90
90
|
namespace :assetic do
|
91
91
|
desc "Dumps all assets to the filesystem"
|
92
92
|
task :dump do
|
93
|
-
run "cd #{latest_release} && #{php_bin} #{app_path}/console
|
93
|
+
run "cd #{latest_release} && #{php_bin} #{app_path}/console assetic:dump #{web_path} --env=#{symfony_env_prod}"
|
94
94
|
end
|
95
95
|
end
|
96
96
|
|
metadata
CHANGED
@@ -1,13 +1,13 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: capifony
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
hash:
|
4
|
+
hash: 13
|
5
5
|
prerelease:
|
6
6
|
segments:
|
7
7
|
- 2
|
8
8
|
- 0
|
9
|
-
-
|
10
|
-
version: 2.0.
|
9
|
+
- 1
|
10
|
+
version: 2.0.1
|
11
11
|
platform: ruby
|
12
12
|
authors:
|
13
13
|
- Konstantin Kudryashov
|
@@ -15,7 +15,7 @@ autorequire:
|
|
15
15
|
bindir: bin
|
16
16
|
cert_chain: []
|
17
17
|
|
18
|
-
date: 2011-03-
|
18
|
+
date: 2011-03-30 00:00:00 +03:00
|
19
19
|
default_executable:
|
20
20
|
dependencies:
|
21
21
|
- !ruby/object:Gem::Dependency
|
@@ -80,7 +80,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
80
80
|
requirements: []
|
81
81
|
|
82
82
|
rubyforge_project: capifony
|
83
|
-
rubygems_version: 1.
|
83
|
+
rubygems_version: 1.6.2
|
84
84
|
signing_key:
|
85
85
|
specification_version: 3
|
86
86
|
summary: Deploying symfony PHP applications with Capistrano.
|