From: Cameron Smith on
Where can I download the latest version of the 1.8 branch?

I need to deploy puppet and it doesn't run on 1.9 yet :(
--
Posted via http://www.ruby-forum.com/.

From: Aldric Giacomoni on
Cameron Smith wrote:
> Where can I download the latest version of the 1.8 branch?
>
> I need to deploy puppet and it doesn't run on 1.9 yet :(

How about http://www.ruby-lang.org/en/downloads/ ?
Or maybe... Which platform do you use?
--
Posted via http://www.ruby-forum.com/.

From: Cameron Smith on
Aldric Giacomoni wrote:
> Cameron Smith wrote:
>> Where can I download the latest version of the 1.8 branch?
>>
>> I need to deploy puppet and it doesn't run on 1.9 yet :(
>
> How about http://www.ruby-lang.org/en/downloads/ ?
> Or maybe... Which platform do you use?

Linux - CentOS and Ubuntu

--
Posted via http://www.ruby-forum.com/.

From: Jonathan Nielsen on
You can find the source for pretty much any version you want at
ftp://ftp.ruby-lang.org/pub/ruby/

You can find the ruby 1.8 svn address here:
http://www.ruby-lang.org/en/community/ruby-core/

Good luck!

-Jonathan Nielsen

From: David Masover on
On Tuesday 04 May 2010 01:03:06 pm Cameron Smith wrote:
> Aldric Giacomoni wrote:
> > Cameron Smith wrote:
> >> Where can I download the latest version of the 1.8 branch?
> >>
> >> I need to deploy puppet and it doesn't run on 1.9 yet :(
> >
> > How about http://www.ruby-lang.org/en/downloads/ ?
> > Or maybe... Which platform do you use?
>
> Linux - CentOS and Ubuntu

Ubuntu has Ruby packages, and the default ones (I think) are still 1.8.

sudo apt-get install ruby

Or if you want Rubygems:

sudo apt-get install ruby ruby-dev rubygems

That should give you puppet:

sudo gem install puppet

I bet CentOS has a similar situation.