ruby - why am I getting a load error for mandrill-api gem on aws? -


i using sinatra , ruby on aws, have tried both 2.1 , 1.9.3 using aws cli create elasticbeanstalk application.

i have installed mandrill-api gem on local machine , ruin bundle install (although may not necessary) , included in gemfile gem 'mandrill-api' , in app.rb file require'mandrill-api'` keep getting "load error" cannot load mandrill-api.

has encountered , resolved problem?

many thanks.

you need require 'mandrill', not mandrill-api. see the docs


Comments