From c72606e792935e9f4d51fa8cdf056d4a8e5c792c Mon Sep 17 00:00:00 2001 From: Schneems Date: Thu, 2 May 2024 14:09:59 -0500 Subject: [PATCH] More s/Node/Ruby/ --- test/fixtures/cnb/ruby/multiple_langs.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/fixtures/cnb/ruby/multiple_langs.md b/test/fixtures/cnb/ruby/multiple_langs.md index cd3a1c8..0a0db30 100644 --- a/test/fixtures/cnb/ruby/multiple_langs.md +++ b/test/fixtures/cnb/ruby/multiple_langs.md @@ -1,6 +1,6 @@ ## Configuring multiple languages -Language support is provided by individual buildpacks that are shipped with the builder. The above example uses the `heroku/ruby` buildpack which is [visible on GitHub](https://github.com/heroku/buildpacks-ruby). When you execute `pack build` with a builder, every buildpack has the opportunity to "detect" if it should execute against that project. The `heroku/ruby` buildpack looks for a `Gemfile.lock` in the root of the project and if found, knows how to detect a node version and install dependencies. +Language support is provided by individual buildpacks that are shipped with the builder. The above example uses the `heroku/ruby` buildpack which is [visible on GitHub](https://github.com/heroku/buildpacks-ruby). When you execute `pack build` with a builder, every buildpack has the opportunity to "detect" if it should execute against that project. The `heroku/ruby` buildpack looks for a `Gemfile.lock` in the root of the project and if found, knows how to detect a Ruby version and install dependencies. In addition to this auto-detection behavior, you can specify buildpacks through the `--buildpack` flag with the `pack` CLI or through a [project.toml](https://buildpacks.io/docs/for-app-developers/how-to/build-inputs/specify-buildpacks/) file at the root of your application.