Peter Zakin
Peter Zakin

Reputation: 66

rake gems:install error

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

Answers (2)

Peter Brown
Peter Brown

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

fl00r
fl00r

Reputation: 83680

try to config.gem 'aws-s3' instead of config.gem 'aws/s3'

Upvotes: 0

Related Questions