Skip to content

Commit

Permalink
fixes #10
Browse files Browse the repository at this point in the history
  • Loading branch information
rmpestano committed Jul 2, 2015
1 parent 3e893a8 commit 642b960
Show file tree
Hide file tree
Showing 10 changed files with 14 additions and 14 deletions.
2 changes: 1 addition & 1 deletion README.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,7 @@ For more details see https://github.com/rmpestano/cukedoctor/tree/master/cukedoc

=== Standalone jar

To use Cukedoctor as a standalone jar you can https://bintray.com/artifact/download/rmpestano/cukedoctor/com/github/cukedoctor/cukedoctor-main/0.3.0/cukedoctor-main-0.3.0.jar[download it here^]. For more details, see https://github.com/rmpestano/cukedoctor/tree/master/cukedoctor-main[cukedoctor-main].
To use Cukedoctor as a standalone jar you can https://bintray.com/artifact/download/rmpestano/cukedoctor/com/github/cukedoctor/cukedoctor-main/0.3.1/cukedoctor-main-0.3.1.jar[download it here^]. For more details, see https://github.com/rmpestano/cukedoctor/tree/master/cukedoctor-main[cukedoctor-main].

=== Reporter

Expand Down
2 changes: 1 addition & 1 deletion cukedoctor-main/README.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -39,4 +39,4 @@ java -jar cukedoctor-main.jar -o "target/document-one" -p "target/test-classes/j
-t "Living Documentation" -f html
****

You can download Cukedoctor main https://bintray.com/artifact/download/rmpestano/cukedoctor/com/github/cukedoctor/cukedoctor-main/0.3.0/cukedoctor-main-0.3.0.jar[jar here^]
You can download Cukedoctor main https://bintray.com/artifact/download/rmpestano/cukedoctor/com/github/cukedoctor/cukedoctor-main/0.3.1/cukedoctor-main-0.3.1.jar[jar here^]
2 changes: 1 addition & 1 deletion cukedoctor-main/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<parent>
<artifactId>cukedoctor</artifactId>
<groupId>com.github.cukedoctor</groupId>
<version>0.4.0-SNAPSHOT</version>
<version>0.3.1</version>
</parent>

<artifactId>cukedoctor-main</artifactId>
Expand Down
4 changes: 2 additions & 2 deletions cukedoctor-maven-plugin/README.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ Just declare the plugin in your _pom.xml_:
<plugin>
<groupId>com.github.cukedoctor</groupId>
<artifactId>cukedoctor-maven-plugin</artifactId>
<version>0.3.0</version>
<version>0.3.1</version>
<executions>
<execution>
<goals>
Expand Down Expand Up @@ -47,7 +47,7 @@ NOTE: *plugins* option replaced *format* option which was deprecated in newer cu
<plugin>
<groupId>com.github.cukedoctor</groupId>
<artifactId>cukedoctor-maven-plugin</artifactId>
<version>0.3.0</version>
<version>0.3.1</version>
<configuration>
<outputFileName>documentation</outputFileName> <1>
<outputDir>docs</outputDir> <2>
Expand Down
2 changes: 1 addition & 1 deletion cukedoctor-maven-plugin/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<parent>
<artifactId>cukedoctor</artifactId>
<groupId>com.github.cukedoctor</groupId>
<version>0.4.0-SNAPSHOT</version>
<version>0.3.1</version>
</parent>

<artifactId>cukedoctor-maven-plugin</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion cukedoctor-reporter/README.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,6 @@ NOTE: *plugins* option replaced *format* option which was deprecated in newer cu
<dependency>
<groupId>com.github.cukedoctor</groupId>
<artifactId>cukedoctor-reporter</artifactId>
<version>0.2.1</version>
<version>0.3.1</version>
</dependency>
----
2 changes: 1 addition & 1 deletion cukedoctor-reporter/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<parent>
<groupId>com.github.cukedoctor</groupId>
<artifactId>cukedoctor</artifactId>
<version>0.4.0-SNAPSHOT</version>
<version>0.3.1</version>
</parent>

<artifactId>cukedoctor-reporter</artifactId>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -273,9 +273,9 @@ public CukedoctorReporterImpl renderScenarioSteps(List<Step> steps) {
renderStepTable(step);

if(notNull(step.getDocString()) && hasText(step.getDocString().getValue())){
writer.write(listing(),newLine());
writer.write(listing(),newLine(),newLine());
writer.write(step.getDocString().getValue().replaceAll("\\n",newLine()));
writer.write(listing(),newLine());
writer.write(newLine(),newLine(),listing(),newLine());
}

if (step.getResult() != null && !Status.passed.equals(step.getStatus())) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -76,9 +76,9 @@
}
],
"doc_string": {
"value": ":toc: right\n:backend: html5\n:doctitle: Documentation\n",
"line": 10,
"content_type": ""
"value": "--\nA paragraph in an open block.\n--",
"content_type": "",
"line": 10
},
"keyword": "Dado "
}
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@

<groupId>com.github.cukedoctor</groupId>
<artifactId>cukedoctor</artifactId>
<version>0.4.0-SNAPSHOT</version>
<version>0.3.1</version>
<packaging>pom</packaging>

<name>cukedoctor</name>
Expand Down

0 comments on commit 642b960

Please sign in to comment.