Veraticus / Dynamoid

Ruby ORM for Amazon's DynamoDB
http://joshsymonds.com/Dynamoid/
247 stars 83 forks source link

aws_sdk Adapter - require': cannot load such file -- aws (LoadError) #186

Open bradly-swart opened 9 years ago

bradly-swart commented 9 years ago

In the aws_sdk.rb adapter, it has the following line.

require 'aws'

Is that not supposed to be;

require 'aws-sdk'

I can't start up my grape API app due to the configure block for Dynamoid failing.

meinac commented 9 years ago

can you confirm that you are using aws-sdk gem version 1.6.9 ?

bradly-swart commented 9 years ago

Checking my Gemfile.lock, its on 2.0.26.

I managed to get around this by not using a configure block, dunno if related or not, have had time to try and re-produce it.