-
Notifications
You must be signed in to change notification settings - Fork 23
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
updates readme
- Loading branch information
rmpestano
committed
Oct 24, 2016
1 parent
d985b5c
commit 06e2750
Showing
11 changed files
with
144 additions
and
88 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
59 changes: 59 additions & 0 deletions
59
cukedoctor-converter/src/main/java/com/github/cukedoctor/config/LayoutConfig.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,59 @@ | ||
package com.github.cukedoctor.config; | ||
|
||
/** | ||
* Created by pestano on 23/10/16. | ||
* | ||
* Documentation layout configuration | ||
*/ | ||
public class LayoutConfig { | ||
|
||
private boolean hideFeaturesSection; | ||
|
||
private boolean hideSummarySection; | ||
|
||
private boolean hideStepTime; | ||
|
||
private boolean hideScenarioKeyword; | ||
|
||
private boolean hideTags; | ||
|
||
public boolean isHideFeaturesSection() { | ||
return hideFeaturesSection; | ||
} | ||
|
||
public void setHideFeaturesSection(boolean hideFeaturesSection) { | ||
this.hideFeaturesSection = hideFeaturesSection; | ||
} | ||
|
||
public boolean isHideSummarySection() { | ||
return hideSummarySection; | ||
} | ||
|
||
public void setHideSummarySection(boolean hideSummarySection) { | ||
this.hideSummarySection = hideSummarySection; | ||
} | ||
|
||
public boolean isHideStepTime() { | ||
return hideStepTime; | ||
} | ||
|
||
public void setHideStepTime(boolean hideStepTime) { | ||
this.hideStepTime = hideStepTime; | ||
} | ||
|
||
public boolean isHideScenarioKeyword() { | ||
return hideScenarioKeyword; | ||
} | ||
|
||
public void setHideScenarioKeyword(boolean hideScenarioKeyword) { | ||
this.hideScenarioKeyword = hideScenarioKeyword; | ||
} | ||
|
||
public boolean isHideTags() { | ||
return hideTags; | ||
} | ||
|
||
public void setHideTags(boolean hideTags) { | ||
this.hideTags = hideTags; | ||
} | ||
} |
11 changes: 6 additions & 5 deletions
11
cukedoctor-converter/src/main/resources/config/cukedoctor.yml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.