Skip to content

Commit

Permalink
Release 0.1.0 to Bintray
Browse files Browse the repository at this point in the history
  • Loading branch information
stephenjudkins committed Jan 26, 2014
1 parent 091a887 commit 7a27028
Show file tree
Hide file tree
Showing 4 changed files with 28 additions and 2 deletions.
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
/target
/project/target
/project/target
/project/project/target
9 changes: 9 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -55,3 +55,12 @@ trait Pixel[A] {
```

Included pixel types in include RGB, RGBA, and grayscale. All are represented internally as 32-bit integers. Once certain Scala issues are addressed [https://issues.scala-lang.org/browse/SI-5611] specialization should give us fast performance. Currently these representations are boxed at runtime, but performance should be reasonably good for many use cases.

## Getting PureImage
Add the following to your `build.sbt`:
```
resolvers += "stephenjudkins-bintray" at "http://dl.bintray.com/stephenjudkins/maven"
libraryDependencies += "ps.tricerato" %% "pureimage" % "0.1.0"
```

12 changes: 11 additions & 1 deletion build.sbt
Original file line number Diff line number Diff line change
@@ -1,5 +1,15 @@
scalaVersion := "2.10.2"

organization := "ps.tricerato"

name := "pureimage"

libraryDependencies += "org.specs2" %% "specs2" % "2.2.3" % "test"

libraryDependencies += "commons-io" % "commons-io" % "2.1" % "test"
libraryDependencies += "commons-io" % "commons-io" % "2.1" % "test"

seq(bintrayPublishSettings:_*)

licenses += ("MIT", url("http://opensource.org/licenses/MIT"))

version := "0.1.0"
6 changes: 6 additions & 0 deletions project/plugins.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")

0 comments on commit 7a27028

Please sign in to comment.