Skip to content

Commit

Permalink
Update buildpack metadata in buildpack.toml (#223)
Browse files Browse the repository at this point in the history
Adjusts the buildpack `name`, `description` and `keywords` in
`buildpack.toml` to match the style discussed in:
heroku/cnb-builder-images#408

These fields are used by the CNB registry and can also be seen in the
output of `pack builder inspect`. They are not used by `pack build` or
Kodon.

In addition, I've cleaned up the `[metadata]` table/subtables to match
the more concise style used by the Procfile and Python CNBs.

GUS-W-14121598.
  • Loading branch information
edmorley authored Oct 23, 2023
1 parent 234855e commit 9eb6b2f
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 9 deletions.
4 changes: 4 additions & 0 deletions buildpacks/ruby/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

### Fixed

- Updated buildpack display name, description and keywords. ([#223](https://github.com/heroku/buildpack-ruby/pull/223))

## [2.1.0] - 2023-09-26

### Added
Expand Down
16 changes: 7 additions & 9 deletions buildpacks/ruby/buildpack.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,21 +3,19 @@ api = "0.9"
[buildpack]
id = "heroku/ruby"
version = "2.1.0"
name = "Ruby"
name = "Heroku Ruby"
homepage = "https://github.com/heroku/buildpacks-ruby"
description = "Official Heroku buildpack for using Ruby to target Cloud Native Buildpack (CNB) builds."
keywords = ["ruby", "rails"]
description = "Heroku's buildpack for Ruby applications."
keywords = ["ruby", "rails", "heroku"]

[[buildpack.licenses]]
type = "BSD-3-Clause"

[[stacks]]
id = "heroku-20"

[[stacks]]
id = "heroku-22"

[[buildpack.licenses]]
type = "BSD-3-Clause"

[metadata]
[metadata.release]
[metadata.release.image]
repository = "docker.io/heroku/buildpack-ruby"
image = { repository = "docker.io/heroku/buildpack-ruby" }

0 comments on commit 9eb6b2f

Please sign in to comment.