Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update tutorials #52

Merged
merged 1 commit into from
Nov 1, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
50 changes: 25 additions & 25 deletions docs/ruby/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -61,16 +61,16 @@ You can view the contents of a builder via the command `pack builder inspect`. F
```
$ pack builder inspect heroku/builder:24 | grep Buildpacks: -m1 -A10
Buildpacks:
ID NAME VERSION HOMEPAGE
heroku/dotnet Heroku .NET 0.1.4 https://github.com/heroku/buildpacks-dotnet
heroku/go Heroku Go 0.4.5 https://github.com/heroku/buildpacks-go
heroku/gradle Heroku Gradle 6.0.3 https://github.com/heroku/buildpacks-jvm
heroku/java Heroku Java 6.0.3 https://github.com/heroku/buildpacks-jvm
heroku/jvm Heroku OpenJDK 6.0.3 https://github.com/heroku/buildpacks-jvm
heroku/maven Heroku Maven 6.0.3 https://github.com/heroku/buildpacks-jvm
heroku/nodejs Heroku Node.js 3.2.15 https://github.com/heroku/buildpacks-nodejs
heroku/nodejs-corepack Heroku Node.js Corepack 3.2.15 https://github.com/heroku/buildpacks-nodejs
heroku/nodejs-engine Heroku Node.js Engine 3.2.15 https://github.com/heroku/buildpacks-nodejs
ID NAME VERSION HOMEPAGE
heroku/deb-packages Heroku .deb Packages Buildpack 0.0.1 https://github.com/heroku/buildpacks-deb-packages
heroku/dotnet Heroku .NET 0.1.4 https://github.com/heroku/buildpacks-dotnet
heroku/go Heroku Go 0.4.5 https://github.com/heroku/buildpacks-go
heroku/gradle Heroku Gradle 6.0.3 https://github.com/heroku/buildpacks-jvm
heroku/java Heroku Java 6.0.3 https://github.com/heroku/buildpacks-jvm
heroku/jvm Heroku OpenJDK 6.0.3 https://github.com/heroku/buildpacks-jvm
heroku/maven Heroku Maven 6.0.3 https://github.com/heroku/buildpacks-jvm
heroku/nodejs Heroku Node.js 3.3.0 https://github.com/heroku/buildpacks-nodejs
heroku/nodejs-corepack Heroku Node.js Corepack 3.3.0 https://github.com/heroku/buildpacks-nodejs
```
<!-- STOP. This document is autogenerated. Do not manually modify. See the top of the doc for more details. -->

Expand Down Expand Up @@ -133,8 +133,8 @@ $ pack build my-image-name --path .
===> ANALYZING
Image with name "my-image-name" not found
===> DETECTING
3 of 5 buildpacks participating
heroku/nodejs-engine 3.2.15
3 of 6 buildpacks participating
heroku/nodejs-engine 3.3.0
heroku/ruby 3.0.0
heroku/procfile 3.1.2
===> RESTORING
Expand All @@ -144,14 +144,14 @@ Skipping buildpack layer analysis
[Heroku Node.js Engine Buildpack]

[Checking Node.js version]
Node.js version not specified, using 20.x
Resolved Node.js version: 20.18.0
Node.js version not specified, using 22.x
Resolved Node.js version: 22.11.0

[Installing Node.js distribution]
Downloading Node.js 20.18.0 (linux-amd64) from https://nodejs.org/download/release/v20.18.0/node-v20.18.0-linux-x64.tar.gz
Downloading Node.js 22.11.0 (linux-amd64) from https://nodejs.org/download/release/v22.11.0/node-v22.11.0-linux-x64.tar.gz
Verifying checksum
Extracting Node.js 20.18.0 (linux-amd64)
Installing Node.js 20.18.0 (linux-amd64)
Extracting Node.js 22.11.0 (linux-amd64)
Installing Node.js 22.11.0 (linux-amd64)
Installing application metrics scripts

# Heroku Ruby Buildpack
Expand Down Expand Up @@ -250,8 +250,8 @@ When you run `pack build` with a builder, each buildpack runs a detection script

```
===> DETECTING
3 of 5 buildpacks participating
heroku/nodejs-engine 3.2.15
3 of 6 buildpacks participating
heroku/nodejs-engine 3.3.0
heroku/ruby 3.0.0
heroku/procfile 3.1.2
===> RESTORING
Expand Down Expand Up @@ -443,7 +443,7 @@ $ pack build my-image-name --path .
Image with name "my-image-name" not found
===> DETECTING
heroku/python 0.19.0
heroku/nodejs-engine 3.2.15
heroku/nodejs-engine 3.3.0
heroku/ruby 3.0.0
heroku/procfile 3.1.2
===> RESTORING
Expand All @@ -468,14 +468,14 @@ Running 'pip install -r requirements.txt'
[Heroku Node.js Engine Buildpack]

[Checking Node.js version]
Node.js version not specified, using 20.x
Resolved Node.js version: 20.18.0
Node.js version not specified, using 22.x
Resolved Node.js version: 22.11.0

[Installing Node.js distribution]
Downloading Node.js 20.18.0 (linux-amd64) from https://nodejs.org/download/release/v20.18.0/node-v20.18.0-linux-x64.tar.gz
Downloading Node.js 22.11.0 (linux-amd64) from https://nodejs.org/download/release/v22.11.0/node-v22.11.0-linux-x64.tar.gz
Verifying checksum
Extracting Node.js 20.18.0 (linux-amd64)
Installing Node.js 20.18.0 (linux-amd64)
Extracting Node.js 22.11.0 (linux-amd64)
Installing Node.js 22.11.0 (linux-amd64)
Installing application metrics scripts

# Heroku Ruby Buildpack
Expand Down