2
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
  • 241
  • 1
  • 3
  • 10

1 Answers1

4

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,175
  • 3
  • 16
  • 17