similar to: Where can I find out about Capistrano 1.2 changes?

Displaying 20 results from an estimated 90000 matches similar to: "Where can I find out about Capistrano 1.2 changes?"

2006 Apr 10
5
I have a Capistrano 1.1 patch - where does it go?
I have a patch for Capistrano 1.1 - how do I submit it? Wes -- Posted via http://www.ruby-forum.com/.
2006 May 25
2
Capistrano only runs migration against production env?
All, Just read in the Capistrano manual about the Capistrano "migrate" task. There it says that: "By default, all this task does is change to the directory of your current release (as indicated by the current symlink), and run rake RAILS_ENV=production migrate. You can specify that it should run against the latest release (regardless of what the current release is) by setting
2006 Sep 21
2
CVS and Capistrano 1.2
Is anyone using Capistrano 1.2 with CVS? If so, anyone willing to share what their set :repository line in the capistrano file looks like? The password in there is no longer being picked up so I can''t deploy to my test server. All that''s changed is my update from Capistrano 1.1 to 1.2. Thanks, Wes -- Posted via http://www.ruby-forum.com/.
2006 Apr 10
1
Capistrano/SwitchTower "current" dir deployment question
All, I have successfully executed the "deploy" task in Capistrano/Switchtower to establish a symbolic link named "current" which points to the current version of my app. on my remote server. My app. was already deployed to the existing Rails root directory (call it "appname") though. I have Apache fronting my app. through a virtual host whose doc. root is itself
2006 Apr 10
2
Capistrano with CVS repository doesn''t seem to work
All, Does anyone has any experience with Capistrano against a CVS repository? I am unable to successfully pull a revision onto my remote server when hitting a CVS repository. Here is the relevant output from the cap "update_code" task: * executing "if [[ ! -d ~dusan/eSimplyTest/releases/20060410205540 ]]; then\n cd ~dusan/eSimplyTest/releases;\n
2006 Apr 10
1
Capistrano/SwitchTower: DB activity for deploy task?
All, Does anyone know if Capistrano/Switchtower actually does anything on the database server as part of the "deploy" task? I''m pretty sure that it doesn''t, but thought I would verify. Thanks, Wes -- Posted via http://www.ruby-forum.com/.
2006 Sep 06
1
Need to override database.yml settings for Capistrano run
All, Database: SQL Server 2000 SQLServer adapter in ODBC mode I have a Capistrano deploy script which fails when I run against my production DB. Apparently, this is the because the user that is set up for production has "guest" privileges in my SQL Server database and when Capistrano runs, instead of looking at the dbo.schema_info table (which has the correct version # - yes I
2006 May 16
8
capistrano can''t find svn
I''m trying to get capistrano to deploy to an osx machine - rake remote:cold_deploy but it fails on the svn co line with "bash: line 2: svn: command not found" I''ve set the proper path to svn (/usr/local/bin) in both .bash_profile and .bash_login but capistrano seems to be ignoring these. How does capistrano know where to look for svn? Thanks
2006 Apr 13
4
Apache/fastcgi setup can''t find custom config/*.yml file!
All, Apache 2/FastCGI on Linux My fastcgi config. file is set up to run the "test" RAILS_ENV. When I go to access a view associated with a particular controller, I keep getting a ENOENT (file not found) error on a custom config. file that I am attempting to load. What I can''t figure out is why it can''t find the file. Here''s the code that loads it in my
2006 Apr 24
7
Controller can''t find helper?????!!!!!????
I have a controller named xyzController under app/controllers I have a helper class named xyzHelper under app/helpers. Shouldn''t I be able to call methods from xyzHelper inside of xyzController without any problems? Thanks, Wes -- Posted via http://www.ruby-forum.com/.
2006 Mar 28
0
Capistrano: can''t get remote connection to work
I can''t get rake remote:exec ACTION=setup to complete successfully. I suspect there is a problem in authentication. The problem however isn''t RSA authentication, see earlier message: subj: Capistrano: remote setup fails, using RSA authentication I renamed my .ssh dir on the remote server and am now connecting via ssh-password authentication. I can connect via ssh w/o
2007 May 19
3
Capistrano installation error--Zlib buffer error
I''m trying to install Capistrano. When I run gem install Capistrano --include-dependencies, I get the following error: ERROR: While executing gem ... (Zlib::BufError) buffer error Anyone got any ideas what''s causing this and how I can fix it? I''d really like to use Capistrano to deploy my rails app, but I need to install it first.... Thanks, Myron -- Posted
2006 Aug 13
1
Can''t setup Capistrano. Failed Authentication
I''m trying for the first time to use capistrano and things were going well until I tried to run ''cap setup''. This is what I get... cap setup loading configuration /opt/local/lib/ruby/gems/1.8/gems/capistrano-1.1.0/lib/capistrano/recipes/standard.rb loading configuration ./config/deploy.rb * executing task setup * executing "mkdir -p -m 775
2007 Jan 12
1
capistrano setup bails with RegexpErr on show_tasks
I am new to RoR, but I have had RoR running with Capistrano on a different box. However I''m installing a fresh copy now and am finding constant regex errors from the standard.rb file while attempting to "show_tasks". As this is a new installation, everything is up-to-date. Here''s the environment: FreeBSD 6.2-RC2 ruby 1.8.5 gem 0.9.0 rake 0.7.1 net-ssh 1.0.10, 1.0.9
2007 Mar 16
5
Bad ActiveSupport gem in gem repository?
All, I''m attempting to update my gems to 1.2 and I get the following: Install required dependency activesupport? [Yn] Y ERROR: While executing gem ... (Gem::InstallError) invalid gem format for c:/ruby/lib/ruby/gems/1.8/cache/activesupport-1.4.2.g em Anyone else seeing this? Anyone willing to try it to see what''s up? Thanks, Wes -- Posted via
2006 May 17
3
Capistrano: Skipping require of dynamic string
Hi all, I am starting out to play with capistrano. I installed the capistrano gem, and I got some messages. I am not sure if these are errors, warnings or just status messages.I hope someone here can help me understand these messages, so that I don''t suspect Capistrano installation if I run into issues further down. :-) binil$ gem install -r capistrano Attempting remote installation
2006 Mar 22
2
How to verify that I can see a Gem from Rails?
I am trying to use a RubyGem in Rails. Given that Rails itself is a Gem, I''m a little confused. I don''t seem to be able to successfully get at my gem. Any clever debugging tricks? I have a require ''rubygems'' and the specific require_gem for my GEM file. What else do I need? Thanks, Wes -- Posted via http://www.ruby-forum.com/.
2006 Apr 17
2
Can I catch something like Errno::EBADF with rescue?
All, I am using Net::HTTP to make requests for URLs in my app. When I get a bad server, I get "Bad file descriptor - connect(2)" message on a ERRNO:EBADF error. Can I catch with rescue or otherwise gracefully react to that error? Thanks, Wes -- Posted via http://www.ruby-forum.com/.
2006 Jul 26
0
capistrano CLI automation - using capistrano as a library
Hi all, I''m trying to integrate Capistrano (thanks Jamis and DHH for such a lovely piece of software) into an application I''m writing. I can''t figure out, though, how to get output from capistrano when it''s used through the CLI or configuration class, however. I see that it implements a logger (Logger) and I see that starting on line 12 of the included
2007 Oct 22
4
HOW TO REBUILD DATABASE WITH CAPISTRANO
I''ve deployed an application using Capistrano. But on my local machine I edited one of the earlier migrations. I''ve tried "cap deploy_with_migrations", but it looks like it didn''t rebuild the database. How can I do the equivalent of this using Capistrano? "rake db:migrate VERSION=0" "rake db:migrate" -- Posted via