Reputation: 66
When i run rake gems:install, i get the following error:
rake aborted! no such file to load -- aws/s3
I have installed the aws and the s3 gems so I don't quite understand why this is happening.
Thanks!
Upvotes: 0
Views: 227
Reputation: 51717
The lib argument needs to be specified since it is different than the gem name. It should be:
config.gem "aws-s3", :lib => "aws/s3"
Upvotes: 2