Add sbt-house-rules and bintray-sbt

This commit is contained in:
Eugene Yokota 2015-08-31 03:02:44 -04:00 committed by Dale Wijnand
parent d7b4c00999
commit dc29953fe8
No known key found for this signature in database
GPG Key ID: 4F256E3D151DF5EF
3 changed files with 3 additions and 6 deletions

View File

@ -34,8 +34,7 @@ object HistoryCommands {
Nth -> ("Execute the command with index n, as shown by the " + ListFull + " command"),
Previous -> "Execute the nth command before this one",
StartsWithString -> "Execute the most recent command starting with 'string'",
ContainsString -> "Execute the most recent command containing 'string'"
)
ContainsString -> "Execute the most recent command containing 'string'")
def helpString = "History commands:\n " + (descriptions.map { case (c, d) => c + " " + d }).mkString("\n ")
def printHelp(): Unit =
println(helpString)

View File

@ -61,8 +61,7 @@ private[sbt] object TypeString {
val TypeMap = Map(
"java.io.File" -> "File",
"java.net.URL" -> "URL",
"java.net.URI" -> "URI"
)
"java.net.URI" -> "URI")
/**
* A Parser that extracts basic structure from the string representation of a type from Manifest.toString.

View File

@ -103,8 +103,7 @@ object Logic {
checkAcyclic(clauses)
problem.toLeft(
reduce0(clauses, initialFacts, Matched.empty)
)
reduce0(clauses, initialFacts, Matched.empty))
}
/**