[lnkForumImage]
TotalShareware - Download Free Software

Confronta i prezzi di migliaia di prodotti.
Asp Forum
 Home | Login | Register | Search 


 

Forums >

comp.lang.ruby

Revision control for Ruby

thiagobrandam

9/30/2008 1:24:00 AM

Does anyone know any good revision control tool/software for Ruby?
Thanks in advance.

24 Answers

James Dinkel

9/30/2008 2:18:00 AM

0

thiagobrandam wrote:
> Does anyone know any good revision control tool/software for Ruby?
> Thanks in advance.

I use a subversion server (running on a linux server) and connect to it
through the Subclipse plugin to Eclipse. If you don't want a separate
server, you can create a local svn repo on your workstation and connect
directly to it through the Subclipse or any other svn client.

James
--
Posted via http://www.ruby-....

Mark Thomas

9/30/2008 2:59:00 AM

0

On Sep 29, 9:24 pm, thiagobrandam <thiagobran...@gmail.com> wrote:
> Does anyone know any good revision control tool/software for Ruby?
> Thanks in advance.

I use redmine (http://www.re...) with a subversion back end.
Works great.

-- Mark.

Robert Klemme

9/30/2008 7:19:00 AM

0

2008/9/30 thiagobrandam <thiagobrandam@gmail.com>:
> Does anyone know any good revision control tool/software for Ruby?

I use rcs locally on cygwin.

robert


--
remember.guy do |as, often| as.you_can - without end

Mike Gold

9/30/2008 8:14:00 AM

0

Robert Klemme wrote:
> 2008/9/30 thiagobrandam <thiagobrandam@gmail.com>:
>> Does anyone know any good revision control tool/software for Ruby?
>
> I use rcs locally on cygwin.
>
> robert

Ah, so that's what they were talking about. You see, I got a call from
1991 today--they were looking for their version control system. I'm
glad you found it!
--
Posted via http://www.ruby-....

akl

9/30/2008 8:26:00 AM

0

thiagobrandam wrote:

> Does anyone know any good revision control tool/software for Ruby?
> Thanks in advance.

I love Mercurial (http://www.selenic.com/mercu...). It's distributed,
really fast and available for Linux MAC OS X AND Windows (contrary to Git).
Via TortoiseHg it gets integrated into Windows File-Explorer (like
TortoiseSVN).
For deployment-Reasons (Rails) i also use SVN, but i think deployment is
also possible via Mercurial.

Andi

P.S. Please excuse my very poor English-speaking (writing) ;)

Ollivier Robert

9/30/2008 8:59:00 AM

0

In article <48e1e2a3$0$6620$9b4e6d93@newsspool3.arcor-online.net>,
<twinandi@web.de> wrote:
>I love Mercurial (http://www.selenic.com/mercu...). It's distributed,
>really fast and available for Linux MAC OS X AND Windows (contrary to Git).
>Via TortoiseHg it gets integrated into Windows File-Explorer (like
>TortoiseSVN).

And it is nicely integrated in things like Redmine and Trac as development
platforms.

--
Ollivier ROBERT -=- EUROCONTROL/CND/VIF/SEU -=-
Systems Engineering Unit

Ron Fox

9/30/2008 9:32:00 AM

0

thiagobrandam wrote:
> Does anyone know any good revision control tool/software for Ruby?
> Thanks in advance.
>
I guess the point is that any old revision control system will do.
None of them are specific to the language you use to write your
software. Pick one use it if you don't like it pick a different one
for the next project. Repeat until you like one.

--
Ron Fox
NSCL
Michigan State University
East Lansing, MI 48824-1321

Joe Wölfel

9/30/2008 2:24:00 PM

0

Depending how you work I think safety and productivity improvements
can be large with many of the newer systems. There are several that
are worth a look. I've used Mercurial a little in the past and liked
it. I also use Bazaar a lot and find it easy to use and very
powerful. Probably the biggest issue I have with Bazaar is that a
plugin is required to use external diff tools. It's no big deal, but
that probably ought to be standard. I'm wondering if git is gaining
the most momentum in the Ruby community. Maybe that matters. On
Windows git might still depend on Cygwin, although I've heard this
might not be true anymore. All of these tools offer large
improvements over Subversion and CVS. I would avoid older designs
like those used in Subversion and CVS.


On 30 sept. 08, at 04:59, Ollivier Robert wrote:

> In article <48e1e2a3$0$6620$9b4e6d93@newsspool3.arcor-online.net>,
> <twinandi@web.de> wrote:
>> I love Mercurial (http://www.selenic.com/mercu...). It's
>> distributed,
>> really fast and available for Linux MAC OS X AND Windows (contrary
>> to Git).
>> Via TortoiseHg it gets integrated into Windows File-Explorer (like
>> TortoiseSVN).
>
> And it is nicely integrated in things like Redmine and Trac as
> development
> platforms.
>
> --
> Ollivier ROBERT -=- EUROCONTROL/CND/VIF/SEU -=-
> Systems Engineering Unit
>


Ittay Dror

9/30/2008 5:21:00 PM

0



thiagobrandam wrote:
> Does anyone know any good revision control tool/software for Ruby?
> Thanks in advance.
>
since nobody else mentioned it, i think git is great. it is a
distributed vcs (like mercurial), with a much better branch/merge
support than svn and a lot of power commands to allow you to make your
commits organized. there's also github which offers hosting for git
repositories and seems to be very popular with git developers (rails is
hosted there)

ittay
>
>

--
--
Ittay Dror <ittay.dror@gmail.com>



Joe Wölfel

9/30/2008 5:52:00 PM

0

I think I mentioned git. In fact, I received a git patch for Rake
over this list serve a only few days ago. It's really good compared
to the way things used to be in the pre-distributed days. I just had
git suck the patch right out of my email and it applied it to my
local Rake repository. Very nice.

On 30 sept. 08, at 13:20, Ittay Dror wrote:

>
>
> thiagobrandam wrote:
>> Does anyone know any good revision control tool/software for Ruby?
>> Thanks in advance.
>>
> since nobody else mentioned it, i think git is great. it is a
> distributed vcs (like mercurial), with a much better branch/merge
> support than svn and a lot of power commands to allow you to make
> your commits organized. there's also github which offers hosting
> for git repositories and seems to be very popular with git
> developers (rails is hosted there)
>
> ittay
>>
>>
>
> --
> --
> Ittay Dror <ittay.dror@gmail.com>
>
>
>