Merge pull request #1810 from hapifhir/2024-11-gg-gem_path

Add GEM path for Jekyll on some systems
This commit is contained in:
Grahame Grieve 2024-11-14 16:06:25 +10:30 committed by GitHub
commit a64ea3d5ff
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 8 additions and 0 deletions

View File

@ -78,6 +78,11 @@ public class FhirSettings {
return instance.fhirSettings.getRubyPath();
}
public static String getGemPath() {
getInstance();
return instance.fhirSettings.getGemPath();
}
public static boolean hasFhirTestCasesPath() {
getInstance();
return instance.fhirSettings.getFhirTestCasesPath() != null;

View File

@ -27,6 +27,8 @@ public class FhirSettingsPOJO {
private String rubyPath;
private String gemPath;
private String fhirTestCasesPath;
private String diffToolPath;
@ -49,6 +51,7 @@ public class FhirSettingsPOJO {
apiKeys = null;
npmPath = null;
rubyPath = null;
gemPath = null;
fhirTestCasesPath = null;
diffToolPath = null;
tempPath = null;