capcake 0.0.2 → 0.0.3
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/lib/capcake.rb +3 -3
- metadata +2 -2
data/lib/capcake.rb
CHANGED
@@ -37,7 +37,7 @@ Capistrano::Configuration.instance(:must_exist).load do
|
|
37
37
|
set :git_flag_quiet, ""
|
38
38
|
|
39
39
|
_cset(:cake_branch) { "" }
|
40
|
-
_cset(:cake_repo) { "
|
40
|
+
_cset(:cake_repo) { "http://github.com/cakephp/cakephp1x.git" }
|
41
41
|
_cset :tmp_children, %w(cache logs sessions tests)
|
42
42
|
_cset :cache_children, %w(models persistent views)
|
43
43
|
_cset :logs_files, %w(debug error)
|
@@ -147,7 +147,7 @@ Capistrano::Configuration.instance(:must_exist).load do
|
|
147
147
|
by putting each new release of your application in its own directory. When \
|
148
148
|
you deploy a new version, this task's job is to update the `current', \
|
149
149
|
`current/tmp', `current/webroot/system' symlinks to point at the new version. \
|
150
|
-
|
150
|
+
|
151
151
|
You will rarely need to call this task directly; instead, use the `deploy' \
|
152
152
|
task (which performs a complete deploy, including `restart') or the 'update' \
|
153
153
|
task (which does everything except `restart').
|
@@ -412,7 +412,7 @@ Capistrano::Configuration.instance(:must_exist).load do
|
|
412
412
|
DESC
|
413
413
|
desc "Prepares server for deployment of a CakePHP application"
|
414
414
|
task :setup do
|
415
|
-
run "cd #{cake_path} && git clone --depth 1 #{cake_repo}"
|
415
|
+
run "cd #{cake_path} && git clone --depth 1 #{cake_repo} cakephp"
|
416
416
|
set :git_flag_quiet, "-q "
|
417
417
|
update
|
418
418
|
end
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: capcake
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.0.
|
4
|
+
version: 0.0.3
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Jad Bitar
|
@@ -9,7 +9,7 @@ autorequire:
|
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
11
|
|
12
|
-
date: 2009-12-
|
12
|
+
date: 2009-12-13 00:00:00 -05:00
|
13
13
|
default_executable:
|
14
14
|
dependencies:
|
15
15
|
- !ruby/object:Gem::Dependency
|