Skip to content

Commit

Permalink
Emit all buildpacks from builder (#81)
Browse files Browse the repository at this point in the history
Previously we were not emitting all buildpacks, which was confusing for some users. This change ensures all buildpacks are visible.

GUS-W-17544083
  • Loading branch information
schneems authored Jan 7, 2025
1 parent f817eaa commit e9e1860
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 5 deletions.
20 changes: 16 additions & 4 deletions docs/ruby/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -61,18 +61,30 @@ In short, a builder is a delivery mechanism for buildpacks. A builder contains r
You can view the contents of a builder via the command `pack builder inspect`. For example:

```
$ pack builder inspect heroku/builder:24 | grep Buildpacks: -m1 -A10
$ pack builder inspect heroku/builder:24 | awk '/^Buildpacks:/ {flag=1} /^Detection Order:/ {exit} flag'
Buildpacks:
ID NAME VERSION HOMEPAGE
heroku/deb-packages Heroku .deb Packages 0.0.3 https://github.com/heroku/buildpacks-deb-packages
heroku/dotnet Heroku .NET 0.1.9 https://github.com/heroku/buildpacks-dotnet
heroku/go Heroku Go 0.5.0 https://github.com/heroku/buildpacks-go
heroku/go Heroku Go 0.5.1 https://github.com/heroku/buildpacks-go
heroku/gradle Heroku Gradle 6.0.4 https://github.com/heroku/buildpacks-jvm
heroku/java Heroku Java 6.0.4 https://github.com/heroku/buildpacks-jvm
heroku/jvm Heroku OpenJDK 6.0.4 https://github.com/heroku/buildpacks-jvm
heroku/maven Heroku Maven 6.0.4 https://github.com/heroku/buildpacks-jvm
heroku/nodejs Heroku Node.js 3.4.0 https://github.com/heroku/buildpacks-nodejs
heroku/nodejs-corepack Heroku Node.js Corepack 3.4.0 https://github.com/heroku/buildpacks-nodejs
heroku/nodejs Heroku Node.js 3.4.1 https://github.com/heroku/buildpacks-nodejs
heroku/nodejs-corepack Heroku Node.js Corepack 3.4.1 https://github.com/heroku/buildpacks-nodejs
heroku/nodejs-engine Heroku Node.js Engine 3.4.1 https://github.com/heroku/buildpacks-nodejs
heroku/nodejs-npm-engine Heroku Node.js npm Engine 3.4.1 https://github.com/heroku/buildpacks-nodejs
heroku/nodejs-npm-install Heroku Node.js npm Install 3.4.1 https://github.com/heroku/buildpacks-nodejs
heroku/nodejs-pnpm-engine Heroku Node.js pnpm Engine 3.4.1 https://github.com/heroku/buildpacks-nodejs
heroku/nodejs-pnpm-install Heroku Node.js pnpm install 3.4.1 https://github.com/heroku/buildpacks-nodejs
heroku/nodejs-yarn Heroku Node.js Yarn 3.4.1 https://github.com/heroku/buildpacks-nodejs
heroku/php Heroku PHP 0.2.0 https://github.com/heroku/buildpacks-php
heroku/procfile Heroku Procfile 3.2.0 https://github.com/heroku/buildpacks-procfile
heroku/python Heroku Python 0.21.0 https://github.com/heroku/buildpacks-python
heroku/ruby Heroku Ruby 5.0.0 https://github.com/heroku/buildpacks-ruby
heroku/sbt Heroku sbt 6.0.4 https://github.com/heroku/buildpacks-jvm
heroku/scala Heroku Scala 6.0.4 https://github.com/heroku/buildpacks-jvm
```
<!-- STOP. This document is autogenerated. Do not manually modify. See the top of the doc for more details. -->

Expand Down
2 changes: 1 addition & 1 deletion docs/src/shared/what_is_a_builder.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ In short, a builder is a delivery mechanism for buildpacks. A builder contains r
You can view the contents of a builder via the command `pack builder inspect`. For example:

```
:::>> $ pack builder inspect heroku/builder:24 | grep Buildpacks: -m1 -A10
:::>> $ pack builder inspect heroku/builder:24 | awk '/^Buildpacks:/ {flag=1} /^Detection Order:/ {exit} flag'
```

> [!NOTE]
Expand Down

0 comments on commit e9e1860

Please sign in to comment.