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?
Rake is a Ruby gem, it doesn't come with Ruby. Install RubyGems and then install Rake using [sudo] gem install rake
.