A Scalingo buildpack for Ruby based apps (Ruby, Rack, and Rails apps). It uses Bundler for dependency management.
This buildpack requires 64-bit Linux.
This buildpack will be used if your app has a Gemfile
and Gemfile.lock
in the root directory. It will then use Bundler to install your dependencies.
Example Usage:
$ ls
Gemfile Gemfile.lock
$ scalingo create ruby-app
$ git push scalingo master
...
-----> Ruby app detected
-----> Installing dependencies using Bundler version 1.1.rc
Running: bundle install --without development:test --path vendor/bundle --deployment
Fetching gem metadata from http://rubygems.org/..
Installing rack (1.3.5)
Using bundler (1.1.rc)
Your bundle is complete! It was installed into ./vendor/bundle
Cleaning up the bundler cache.
-----> Discovering process types
Procfile declares types -> (none)
Default types for Ruby -> console, rake
The buildpack will detect your app as Ruby if it has a Gemfile
and Gemfile.lock
files in the root directory. It will then proceed to run bundle install
after setting up the appropriate environment for ruby and Bundler.
For more information about using Ruby and buildpacks on Scalingo, see these documentation articles:
To use this buildpack, fork it on Github. Push up changes to your fork, then create a test app with BUILDPACK_URL=<your-github-url>
and push to it.
$ bundle exec hatchet install
$ bundle exec rake spec
This buildpack is maintained by Heroku. Upstream Repository: heroku-ruby-buildpack