Skip to content

Commit

Permalink
fix: update links in generated readme (#432)
Browse files Browse the repository at this point in the history
* chore: README.md documentation links fix/update

* chore: Updated README.md documentation links

* chore: Updated README.md asset-pipeline documentation link
  • Loading branch information
gsartori authored Nov 28, 2024
1 parent a875736 commit 2ab9f4a
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 7 deletions.
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* Copyright 2017-2020 original authors
* Copyright 2017-2024 original authors
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
Expand Down Expand Up @@ -135,7 +135,10 @@ public String getCategory() {

@Override
public String getDocumentation() {
return "https://www.asset-pipeline.com/manual/";
return "https://github.com/bertramdev/asset-pipeline#readme";

// The site is currently offline (2024-11-28), replace the above when online again
// return "https://www.asset-pipeline.com/manual/";
}

@Override
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ public boolean supports(ApplicationType applicationType) {

@Override
public String getDocumentation() {
return "https://github.com/grails3-plugins/geb#readme";
return "https://github.com/grails/geb#readme";
}

@Override
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ public boolean supports(ApplicationType applicationType) {

@Override
public String getDocumentation() {
return "https://github.com/grails3-plugins/geb#readme";
return "https://github.com/grails/geb#readme";
}

@Override
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* Copyright 2017-2020 original authors
* Copyright 2017-2024 original authors
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
Expand All @@ -23,6 +23,7 @@
import org.grails.forge.feature.Feature;
import org.grails.forge.feature.FeatureContext;
import org.grails.forge.options.Options;
import org.grails.forge.util.VersionInfo;

import java.util.Set;

Expand Down Expand Up @@ -57,12 +58,12 @@ public String getDescription() {

@Override
public String getDocumentation() {
return "https://grails.github.io/scaffolding/latest/groovydoc/";
return "https://docs.grails.org/" + VersionInfo.getGrailsVersion() + "/guide/scaffolding.html";
}

@Override
public String getThirdPartyDocumentation() {
return "https://grails-fields-plugin.github.io/grails-fields/latest/guide/index.html";
return "https://github.com/gpc/fields#readme";
}

@Override
Expand Down

0 comments on commit 2ab9f4a

Please sign in to comment.