Last active
September 25, 2015 14:50
-
-
Save foca/a7936bb73a354e9ff79c to your computer and use it in GitHub Desktop.
Stupid heroku wants Bundler. Bundler is shit. Make to the rescue.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
## | |
# Bundler for Heroku | |
## | |
Gemfile.lock: Gemfile | |
ruby -S bundle install | |
Gemfile: .gems | |
echo "source \"https://rubygems.org\"" > $@ | |
echo "ruby \"$(shell ruby -e 'puts RUBY_VERSION')\"" >> $@ | |
awk '{ print "gem \"" $$1 "\", \"" $$3 "\"" }' $< >> $@ |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment