Reputation: 26182
Do Heroku Cedar stack apps require thin and eventmachine in Gemfile?
gem 'thin'
gem 'eventmahine'
What about versions? On other stacks they were installed automatically?
Upvotes: 0
Views: 714
Reputation: 37507
Yes, you need to specify any gem that you want to use on Cedar stack unlike on Bamboo which had preinstalled gems.
Go with whatever version your application needs,
Upvotes: 1