capifony 0.4.1 → 0.4.2
Sign up to get free protection for your applications and to get access to all the features.
- data/CHANGELOG +4 -0
- data/README +1 -0
- data/lib/capifony.rb +5 -0
- metadata +4 -4
data/CHANGELOG
CHANGED
data/README
CHANGED
@@ -5,6 +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+ (1.2 can work with small manual changes)
|
8
9
|
- Must have SSH access to the server you are deploying to.
|
9
10
|
- Must have Ruby and RubyGems installed on your machine (not required for deployment server)’
|
10
11
|
|
data/lib/capifony.rb
CHANGED
@@ -287,6 +287,11 @@ namespace :symfony do
|
|
287
287
|
end
|
288
288
|
|
289
289
|
namespace :doctrine do
|
290
|
+
desc "Compile doctrine"
|
291
|
+
task :compile do
|
292
|
+
run "#{php_bin} #{latest_release}/symfony doctrine:compile"
|
293
|
+
end
|
294
|
+
|
290
295
|
desc "Ensure Doctrine is correctly configured"
|
291
296
|
task :setup do
|
292
297
|
conf_files_exists = capture("if test -s #{shared_path}/config/databases.yml ; then echo 'exists' ; fi").strip
|
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: 11
|
5
5
|
prerelease: false
|
6
6
|
segments:
|
7
7
|
- 0
|
8
8
|
- 4
|
9
|
-
-
|
10
|
-
version: 0.4.
|
9
|
+
- 2
|
10
|
+
version: 0.4.2
|
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: 2010-
|
18
|
+
date: 2010-09-23 00:00:00 +03:00
|
19
19
|
default_executable:
|
20
20
|
dependencies:
|
21
21
|
- !ruby/object:Gem::Dependency
|