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();
|
return instance.fhirSettings.getRubyPath();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public static String getGemPath() {
|
||||||
|
getInstance();
|
||||||
|
return instance.fhirSettings.getGemPath();
|
||||||
|
}
|
||||||
|
|
||||||
public static boolean hasFhirTestCasesPath() {
|
public static boolean hasFhirTestCasesPath() {
|
||||||
getInstance();
|
getInstance();
|
||||||
return instance.fhirSettings.getFhirTestCasesPath() != null;
|
return instance.fhirSettings.getFhirTestCasesPath() != null;
|
||||||
|
|
|
@ -27,6 +27,8 @@ public class FhirSettingsPOJO {
|
||||||
|
|
||||||
private String rubyPath;
|
private String rubyPath;
|
||||||
|
|
||||||
|
private String gemPath;
|
||||||
|
|
||||||
private String fhirTestCasesPath;
|
private String fhirTestCasesPath;
|
||||||
|
|
||||||
private String diffToolPath;
|
private String diffToolPath;
|
||||||
|
@ -49,6 +51,7 @@ public class FhirSettingsPOJO {
|
||||||
apiKeys = null;
|
apiKeys = null;
|
||||||
npmPath = null;
|
npmPath = null;
|
||||||
rubyPath = null;
|
rubyPath = null;
|
||||||
|
gemPath = null;
|
||||||
fhirTestCasesPath = null;
|
fhirTestCasesPath = null;
|
||||||
diffToolPath = null;
|
diffToolPath = null;
|
||||||
tempPath = null;
|
tempPath = null;
|
||||||
|
|
Loading…
Reference in New Issue