From: Cameron Smith on 4 May 2010 12:02 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 4 May 2010 13:17 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 4 May 2010 14:03 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 4 May 2010 14:20 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 5 May 2010 14:05
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. |