pingu
pingu

Reputation: 8827

Installing Gems on Amazon AWS with Elastic Beanstalk for non Rails ruby script

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

Answers (1)

Rohit Banga
Rohit Banga

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

Related Questions