Skip to content
This repository has been archived by the owner on Mar 24, 2022. It is now read-only.

Commit

Permalink
Prepared the 0.2.3 pre-release
Browse files Browse the repository at this point in the history
Signed-off-by: Konstantin Semenov <[email protected]>
  • Loading branch information
henriquealexandreh authored and jhvhs committed Apr 26, 2017
1 parent 289ce5e commit 4d34632
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 7 deletions.
1 change: 0 additions & 1 deletion DEVELOPER_README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@

When creating a release, the following steps should be followed:
- Update `build.gradle.kts` with the version number
- Update `README.md` with the version number
- When committing those changes, tag the commit with the version number, and push the tag to repository
- Build the JAR by running `./gradlew bootRepackage`
- Upload the resulting JAR to Github release associated with the version tag
Expand Down
5 changes: 1 addition & 4 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,13 +1,10 @@
# Trilogy
![Trilogy](./trilogy-green.png)

Trilogy is a tool for testing server-side database logic. Test cases are represented by plain text files utilizing markdown format, which makes them easy to read and edit.
## Requirements
- JRE 1.7 or later installed
- JDBC driver for the database under test available on the classpath.

##Latest version
0.2

## Command-line options
- Single test case run:
```
Expand Down
4 changes: 2 additions & 2 deletions src/main/kotlin/io/pivotal/trilogy/parsing/MarkdownTable.kt
Original file line number Diff line number Diff line change
Expand Up @@ -14,11 +14,11 @@ class MarkdownTable(val table: String) {
}

private fun extractHeaders(header: String): List<String> {
return header.split("|").map { it.trim() }.filter { !it.equals("") }
return header.split("|").map(String::trim).filter { it != "" }
}

private fun extractValues(valueTable: String): List<List<String>> {
return valueTable.split("\n").map { it.split("|").map { it.trim() }.drop(1).dropLast(1) }
return valueTable.split("\n").map { it.split("|").map(String::trim).drop(1).dropLast(1) }
}

}
Binary file added trilogy-green.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

0 comments on commit 4d34632

Please sign in to comment.