Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 18 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,17 @@ What is Mustache?

As ctemplates says, "It emphasizes separating logic from presentation: it is impossible to embed application logic in this template language".

Installation
------------

The artifacts for *mustache* live on Bintray and can be tied into your SBT-based Scala project like this:

```scala
resolvers += "bintray-alexander_myltsev" at "http://dl.bintray.com/content/alexander-myltsev/maven"

libraryDependencies += "com.vspy" %% "mustache" % "1.2"
```

Usage
-----

Expand Down Expand Up @@ -106,5 +117,12 @@ I’m not a lawyer and this is not a legal advice, but it is free to use in any

Enjoy !

Contributors
------------

Victor Bilyk (https://github.com/vspy)

Alexander Myltsev (https://github.com/alexander-myltsev)

[1]: http://github.com/defunkt/mustache
[2]: http://code.google.com/p/simple-build-tool/
10 changes: 8 additions & 2 deletions build.sbt
Original file line number Diff line number Diff line change
@@ -1,12 +1,18 @@
bintrayPublishSettings

name := "mustache"

organization := "com.vspy"

version := "1.2"

scalaVersion := "2.11.1"

resolvers += "Typesafe Repository" at "http://repo.typesafe.com/typesafe/releases/"
resolvers ++= Seq(
"Typesafe Repository" at "http://repo.typesafe.com/typesafe/releases/",
"Typesafe Snapshots Repository" at "http://repo.typesafe.com/typesafe/snapshots/")

resolvers += "Typesafe Snapshots Repository" at "http://repo.typesafe.com/typesafe/snapshots/"
licenses += ("MIT", url("http://opensource.org/licenses/MIT"))

libraryDependencies ++= Seq(
"junit" % "junit" % "4.8.1" % "test->default",
Expand Down
6 changes: 6 additions & 0 deletions project/bintray.sbt
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
resolvers += Resolver.url(
"bintray-sbt-plugin-releases",
url("http://dl.bintray.com/content/sbt/sbt-plugin-releases"))(
Resolver.ivyStylePatterns)

addSbtPlugin("me.lessis" % "bintray-sbt" % "0.1.1")