3
sudo yum install ruby

I did this on my Amazon EC2 AMI, but I still don't find the 'rake' command. Isn't it part of this installation?

user42891
  • 251

1 Answers1

5

Rake is a Ruby gem, it doesn't come with Ruby. Install RubyGems and then install Rake using [sudo] gem install rake.

John Topley
  • 2,205