Skip to content

Commit

Permalink
feat(asdf): Add rebar3 to asdf manager (#29188)
Browse files Browse the repository at this point in the history
Co-authored-by: Rhys Arkins <[email protected]>
  • Loading branch information
kivra-pauoli and rarkins committed May 21, 2024
1 parent f59c7f3 commit 2e6c563
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 0 deletions.
7 changes: 7 additions & 0 deletions lib/modules/manager/asdf/extract.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -98,6 +98,7 @@ poetry 1.3.2
pre-commit 3.3.1
pulumi 3.57.1
python 3.11.0
rebar 3.23.0
ruby 3.1.2
rust 1.64.0
sbt 1.9.7
Expand Down Expand Up @@ -484,6 +485,12 @@ dummy 1.2.3
depName: 'python',
extractVersion: '^v(?<version>\\S+)',
},
{
currentValue: '3.23.0',
datasource: 'github-tags',
packageName: 'erlang/rebar3',
depName: 'rebar',
},
{
currentValue: '3.1.2',
datasource: 'ruby-version',
Expand Down
7 changes: 7 additions & 0 deletions lib/modules/manager/asdf/upgradeable-tooling.ts
Original file line number Diff line number Diff line change
Expand Up @@ -500,6 +500,13 @@ export const upgradeableTooling: Record<string, ToolingDefinition> = {
extractVersion: '^v(?<version>\\S+)',
},
},
rebar: {
asdfPluginUrl: 'https://github.com/Stratus3D/asdf-rebar.git',
config: {
datasource: GithubTagsDatasource.id,
packageName: 'erlang/rebar3',
},
},
ruby: {
asdfPluginUrl: 'https://github.com/asdf-vm/asdf-ruby',
config: {
Expand Down

0 comments on commit 2e6c563

Please sign in to comment.