giri
giri

Reputation: 27199

How to get started with Ruby programming language with Java background?

I am intermediate in java but as one of the company requirements they are looking for JAVA+RUBY programming language.. Can anybody help how to get started with Ruby I need to get it done in next one month so that I can crack the interview of the company... I wanna know how does Ruby work like compiler, is it platform independent or how does byte code generated.. I must be able to write the small level programs in Ruby.. Like in java First I need to download JDK den getting started with programs.. How about Ruby what all I need to install in my computer..

Thanks..

Upvotes: 0

Views: 537

Answers (8)

user253455
user253455

Reputation: 465

Pragrog books are always good:

http://pragprog.com/titles/fr_j2r/from-java-to-ruby

Upvotes: 1

Jordan Reiter
Jordan Reiter

Reputation: 21022

Kind of surprised no one has mentioned JRuby yet.

One of its strengths is the ability to natively call Java classes, so you can use a lot of the frameworks from Java that you're already familiar with.

Upvotes: 2

cjstehno
cjstehno

Reputation: 13994

How about the Ruby language web site: http://www.ruby-lang.org/en/

Also, I would advise you not to try and come across as a ruby expert in the interview after only playing with it for a month. It's better to err on the side of honesty, because a good interviewer will be able to tell when you are faking it... or worse, it will show when you start working.

Ruby is a cool language... have fun!

Upvotes: 0

CountCet
CountCet

Reputation: 4573

Downloading the Ruby Koans is another great way to learn http://github.com/edgecase/ruby_koans

Upvotes: 1

Alison R.
Alison R.

Reputation: 4294

To Ruby from Java:

http://www.ruby-lang.org/en/documentation/ruby-from-other-languages/to-ruby-from-java/

That is the official site for Ruby and will be able to point you to language downloads and other resources.

Upvotes: 0

Justin Niessner
Justin Niessner

Reputation: 245429

Start here:

http://tryruby.org/

Once you do the 15 minute walk-through, go here:

Programming Ruby: The Pragmatic Programmer's Guide

Upvotes: 0

jonnii
jonnii

Reputation: 28312

The Pickaxe book

Why's guide

Upvotes: 2

Related Questions