Reputation: 8827
How can I automatically install Gems on deployment with Elastic Beanstalk for non Rails ruby scripts?
Will a "Gemfile" in root still get run?
Upvotes: 1
Views: 738
Reputation: 18926
Yes a Gemfile in your app source will be processed. In addition you also have the option of locally packaging your dependencies in vendor/cache
. See this blog post for more details.
Upvotes: 1