[capistrano-mailing-list] Re: Is there a roadmap for future Capistrano features and releases? eg What is coming in version 4?

2017-10-19 Thread Henry Scullion
Lee,

Thanks for your comprehensive reply. I can rest easy..!   :)

I can tell you that in the WordPress space, we are benefitting from your 
strategy - plugins like this one are helping make deployment even easier:

   https://github.com/lavmeiker/capistrano-wpcli

Thanks again,
Henry

On Thursday, 19 October 2017 18:08:03 UTC+2, Henry Scullion wrote:
>
> Where do I find out what is coming up in Capistrano?
>
> I keep an eye on Github, capistranorb and this group, but can't find a 
> central place for roadmap info.
>
> It's a fantastic tool. I'm using it to deploy a local WordPress site from 
> my laptop to a shared host.
>
> H
>

-- 
You received this message because you are subscribed to the Google Groups 
"Capistrano" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to capistrano+unsubscr...@googlegroups.com.
To view this discussion on the web, visit 
https://groups.google.com/d/msgid/capistrano/135d3bd8-1648-4e9b-94b3-0094427f3cd4%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[capistrano-mailing-list] Is there a roadmap for future Capistrano features and releases? eg What is coming in version 4?

2017-10-19 Thread Henry Scullion
Where do I find out what is coming up in Capistrano?

I keep an eye on Github, capistranorb and this group, but can't find a 
central place for roadmap info.

It's a fantastic tool. I'm using it to deploy a local WordPress site from 
my laptop to a shared host.

H

-- 
You received this message because you are subscribed to the Google Groups 
"Capistrano" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to capistrano+unsubscr...@googlegroups.com.
To view this discussion on the web, visit 
https://groups.google.com/d/msgid/capistrano/6b8e4b52-13e4-4d3b-a71e-5dbce443696c%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[capistrano-mailing-list] Re: capistrano without git at remote shared hosting

2014-09-26 Thread Henry Scullion
Assuming you have ssh access to your server (the primary requirement for 
using Capistrano to deploy), I guess you could override the Capistrano git 
tasks with some other transfer strategy like sftp for example...

On Tuesday, 23 September 2014 23:54:16 UTC+2, Born Steinbjörn wrote:

 Hello,

 is there any way to use capistrano without having git installed on the 
 staging/production server? I am just asking because i am not able to 
 install git at shared hosting, unfortunately.

 Thanks and Cheers.


-- 
You received this message because you are subscribed to the Google Groups 
Capistrano group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to capistrano+unsubscr...@googlegroups.com.
To view this discussion on the web, visit 
https://groups.google.com/d/msgid/capistrano/ba4b5fbd-1b74-491e-9c55-62ec03a87b74%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[capistrano] Unable to find git object

2013-03-04 Thread Henry Umansky
This is probably not a Capistrano issue, but perhaps can be fixed via Cap. I 
currently have two branches; develop and master. I set the develop branch to 
deploy to the dev server and the master branch is set to deploy to staging and 
production. Not exactly sure when this started happening, but whenever I commit 
something to the develop branch and haven't merge to master branch yet, I get 
the following error when I try to deploy to the dev server:

[asmobile-dev.princeton.edu] executing command
 ** [asmobile-dev.princeton.edu :: err] error: unable to find 
2de752fb5a07bdd1577ca78a5c6dce690b13f8dc
 ** fatal: object 2de752fb5a07bdd1577ca78a5c6dce690b13f8dc not found
command finished in 1604ms

The command that ultimate chokes is:

  * executing if [ -d /var/local/asmobile/sites/shared/cached-copy ]; then cd 
/var/local/asmobile/sites/shared/cached-copy  git fetch -q origin  git 
fetch --tags -q origin  git reset -q --hard 
2de752fb5a07bdd1577ca78a5c6dce690b13f8dc  git clean -q -d -x -f; else git 
clone -q g...@bitbucket.org:princeton/sites-kurogo-mobile-web.git 
/var/local/asmobile/sites/shared/cached-copy  cd 
/var/local/asmobile/sites/shared/cached-copy  git checkout -q -b deploy 
2de752fb5a07bdd1577ca78a5c6dce690b13f8dc; fi

I tried deleting the cached-copy folder on the server and still have the same 
issue. Any idea what I can do to troubleshoot this issue?

Thank you,
Henry

-- 
-- 
* You received this message because you are subscribed to the Google Groups 
Capistrano group.
* To post to this group, send email to capistrano@googlegroups.com
* To unsubscribe from this group, send email to 
capistrano+unsubscr...@googlegroups.com For more options, visit this group at 
http://groups.google.com/group/capistrano?hl=en
--- 
You received this message because you are subscribed to the Google Groups 
Capistrano group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to capistrano+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.




[capistrano] Deploy to all servers

2011-11-07 Thread Henry Umansky
I'm using the multistage Capistrano module, does anyone know if there is a 
shorthand way to deploy to all servers. So for example:

$ cap staging deploy
$ cap production deploy

would be replaced with:

$ cap all deploy

Is this possible?

-- 
* You received this message because you are subscribed to the Google Groups 
Capistrano group.
* To post to this group, send email to capistrano@googlegroups.com
* To unsubscribe from this group, send email to 
capistrano+unsubscr...@googlegroups.com For more options, visit this group at 
http://groups.google.com/group/capistrano?hl=en


[Capistrano] Re: Deploying from a specific path with a Git repo

2009-01-15 Thread Henry

Thanks for the reply.  I understand the best practice of 1 repo == 1
project.   But sometimes it just doesn't make sense.  For example, I
have another big rails app that is not ready for deployment yet, but
I'd like to display a semi-functional splash site that uses lots of
the same assets.  So I have a one-file sinatra app sitting in another
directory in the repo rather than creating another repo with duplicate
files for this purpose.  It would be nice in this case just to deploy
that dir (which could have it's own teensy Capfile).

Further complicating things is the fact that you can indeed check out
paths of submodules, which seems like it doesn't fit with the 1 repo
== 1 project philosophy.

But this is not a git discussion board so I'll leave it that, except
to say thanks for Cap, it's a fantastic tool.

On Jan 14, 4:46 pm, Jamis Buck ja...@37signals.com wrote:
 Does does not let you check out a just subdirectory of a repository. If
 you want to deploy just a subdirectory, you'll need to write your own
 tasks that check out the repo locally, and then bundle up the
 subdirectory you wish to deploy.

 Git best-practice is to use one repository for one project.

 - Jamis

 On 1/14/09 11:22 AM, Henry wrote:



  Greetings,

  I have a Git repo that contains a few small sinatra apps. So I would
  like to deploy them one at at time.  So I need to set a path within
  the repo to deploy, but I can't figure out how to do it. This is what
  I've tried:

  set :repository,  g...@github.com:me/myrepo.git/app1

  But that doesn't work.  Any suggestions?

  Thanks!
--~--~-~--~~~---~--~~
To unsubscribe from this group, send email to 
capistrano-unsubscr...@googlegroups.com
For more options, visit this group at http://groups.google.com/group/capistrano
-~--~~~~--~~--~--~---



[Capistrano] Re: Capistrano | Google Groups

2008-05-28 Thread Henry Addison (Texperts)

Hi Rich,

This looks the error I got when I first moved to Capistrano 2.3 from  
2.1 (in particular when I moved from Net::SSH 1.1.2 to 2.0.1). This  
had me tearing my hair out for a while because it was working on our  
production servers but not for the test setup on my local machine,  
but a quick use of rdebug and I found that Net::SSH was now reading  
ssh configuration files and my personal configuration (~/.ssh/config)  
wasn't in a format that it was expecting.

I had something like:

Host=localhost
User=username

while Net::SSH 2.0.1 was expecting a space separated layout:

Host localhost
User username

Hope this helps,

Henry

On 28 May 2008, at 07:03, Rich Morin wrote:


 I'm having trouble getting a solo Capistrano app (as discussed
 in Deploying Rails Applications) to work.  I'm hoping someone
 on this list can give me a hand.

 My impression is that the SSH login is failing, because of some
 authorization issue, but I've tried setting assorted variables
 with no success.  Help?

 -r

 P.S.  I'd also like to know is there's a way to get the return
   code from a failing command, assuming I get that far...

 === === ===

 $ cat t1_s
 #!/usr/bin/env ruby
 #
 # t1_s - sub-command for use by t1.cap

puts 'Hi on STDOUT'
 STDERR.puts 'Hi on STDERR'

 === === ===

 $ cat t1.cap
 # t1.cap

   set  :application, 'localhost'
   set  :user,'rdm'
   role :arti,application

   desc 'Run a test command.'
   task :test_cmd, :roles = :arti do
 begin
   cmd = 'Work/Cap/t1_s'
   run cmd do |channel, stream, data|
 case stream
 when :err
   puts stderr from #{channel[:host]}: #{data}
 when :out
   puts stdout from #{channel[:host]}: #{data}
 end
   end
 rescue
   puts 'Command failed: ' + $!
 end
   end

 === === ===

 $ cap -f ./t1.cap test_cmd
   * executing `test_cmd'
   * executing Work/Cap/t1_s
 servers: [localhost]
 Command failed: connection failed for: localhost
   (NoMethodError: private method `split' called for nil:NilClass)

 === === ===
 -- 
 http://www.cfcl.com/rdmRich Morin
 http://www.cfcl.com/rdm/resume [EMAIL PROTECTED]
 http://www.cfcl.com/rdm/weblog +1 650-873-7841

 Technical editing and writing, programming, and web development

 

 
--
Henry Addison
Software Engineer
Texperts
Mobile +44 (0) 7986 839321
Main : +44 (0) 1223 309080  Fax: +44(0) 1223 309082
[EMAIL PROTECTED]
 
--

Re5ult Limited Registered in England No 04909795 VAT registration  
number GB 849 201 231. Registered office 74 Eden Street Cambridge CB1  
1EL.
This email is confidential. It may be read, copied and used only by  
the intended recipient. If you have received it in error, please  
contact us immediately.





--~--~-~--~~~---~--~~
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at http://groups.google.com/group/capistrano
-~--~~~~--~~--~--~---