0
votes
0answers
13 views
railsless-deploy in Webistrano
How do I use the railsless-deploy gem in Webistrano?
As far as I understood, it contains common presets for non-ruby apps, which I would have to otherwise all over-/rewrite manually using Webistrano …
0
votes
1answer
16 views
capistrano deployment with use_sudo=true - permissions problem
i am trying to do a deployment with capistrano to newly installed Ubuntu server
i am deploying to directory /var/www, owned by root, so i need to set use_sudo to true
while i execute commands with …
0
votes
4answers
71 views
Creating crontab via Capistrano instead of using crontab -e
I would like to include cron tasks in my Capistrano deployment files instead of using the following command to manually edit the crontab file:
crontab -e [username]
Is there a script I could use …
0
votes
0answers
16 views
Your radiant deployment recipe.
Are you using Radiant CMS?
If yes, what is you deployment strategy?
Since lot's of configuration is stored in the database, I need to overwrite db on the server with my development db (with …
1
vote
1answer
53 views
Capistrano: deploy.rb file refactoring
I have following code in my deploy.rb
namespace :app do
desc "copies the configuration frile from ~/shared/config/*.yml to ~/config"
task :copy_config_files,:roles => :app do
run "cp -fv …
0
votes
0answers
14 views
How do I start Thinking Sphinx delayed delta rake task from deploy script?
Hi
I have Thinking Sphinx setup and working however I am having a problem getting the Delayed Job rake tasks to start during deployment.
I have the following task in deploy.rb which appears to …
0
votes
1answer
26 views
Have Capistrano Insert Password From Prompt Into Environment.rb File
I am using Action Mailer and have my configuration settings for Action Mailer in my environment.rb file. I would like to post my project in a public repository along with an environment.rb file, but I …
0
votes
1answer
12 views
capistrano error on cached-copy
I am receiving the following error when running a cap deploy:update
failed: "sh -c 'if [ -d /home/deployer/apps/all_bout_texas/shared/cached-copy ]; then cd …
0
votes
3answers
83 views
Deploying with Capistrano & Subversion. Working copy locked
I'm deploying to a Debian server with Capistrano which fails due to locked a working copy. I narrowed it down to this:
svn checkout http://myrepo.net/mysite/tags/1.0 /var/www/mysite/releases/1234
So …
2
votes
5answers
215 views
Reading the first line of a file in Ruby
I want to read only the first line of a file using Ruby in the fastest, simplest, most idiomatic way possible. What's the best approach?
(Specifically: I want to read the git commit UUID out of the …
7
votes
2answers
156 views
Is there a Perl or Lua alternative to Capistrano?
For a number of web-applications I need something like Capistrano to automate deployment. I know Capistrano can be used to deploy non-ruby applications but I'm not familiar with Ruby, so I expect …
0
votes
2answers
51 views
deployment problem on Ruby on Rails
Hi
when do the cap deploy for my Ruby on Rails application. i faced the following error.
cap deploy
* executing `deploy'
* executing `deploy:update'
** transaction: start
* executing …
0
votes
1answer
22 views
Capistrano Hates Gemspecs
I'm deploying a rails app on Slicehost using Capistrano. Part of the process of deployment involves rebuilding a gem and installing it.
Deploying the code to the server via git scm works fine, but …
0
votes
3answers
32 views
Capistrano not restarting
Capistrano is deploying cold, deploying updates and uploading the symlink fine. It will not however restart.
I notice that permission is denied on the /script/process/reaper file. I have found a …
0
votes
1answer
33 views
css files not loading after capistrano deploy
Hey Guys,
I have noticed that after I do a deploy via capistrano, the static css files dont seem to be loading, this is true when I specially specify
<%= stylesheet_link_tag 'resume',:cache => …
