container.sh 226 B

12345678910111213141516171819
  1. #!/bin/sh
  2. set -e
  3. # list taken from https://rubygems.org/stats
  4. for gem in \
  5. thor \
  6. rake \
  7. rails \
  8. rack \
  9. activesupport \
  10. activerecord \
  11. actionpack \
  12. json \
  13. actionmailer \
  14. activeresource
  15. do
  16. gem install "$gem"
  17. done