Skip to content

Commit

Permalink
Add GEM path for Jekyll on some systems
Browse files Browse the repository at this point in the history
  • Loading branch information
grahamegrieve committed Nov 13, 2024
1 parent cc75799 commit 18f5f3c
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -78,6 +78,11 @@ public static String getRubyPath() {
return instance.fhirSettings.getRubyPath();
}

public static String getGemPath() {
getInstance();
return instance.fhirSettings.getGemPath();
}

public static boolean hasFhirTestCasesPath() {
getInstance();
return instance.fhirSettings.getFhirTestCasesPath() != null;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,8 @@ public class FhirSettingsPOJO {
private String npmPath;

private String rubyPath;

private String gemPath;

private String fhirTestCasesPath;

Expand All @@ -49,6 +51,7 @@ protected FhirSettingsPOJO() {
apiKeys = null;
npmPath = null;
rubyPath = null;
gemPath = null;
fhirTestCasesPath = null;
diffToolPath = null;
tempPath = null;
Expand Down

0 comments on commit 18f5f3c

Please sign in to comment.