Merge pull request #1810 from hapifhir/2024-11-gg-gem_path
Add GEM path for Jekyll on some systems
This commit is contained in:
commit
a64ea3d5ff
|
@ -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;
|
||||
|
|
|
@ -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;
|
||||
|
|
Loading…
Reference in New Issue