Skip to content

Commit

Permalink
Fixed return type of sMembers async command + Added missing sbt plugins
Browse files Browse the repository at this point in the history
  • Loading branch information
Alexandre Curreli committed Dec 31, 2013
1 parent 50d9886 commit 939af3d
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 5 deletions.
1 change: 0 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,4 @@
.classpath
.project
.settings/
project/
target/
6 changes: 3 additions & 3 deletions build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,14 @@ organization := "com.livestream"

name := "scredis"

version := "1.0.1"
version := "1.0.2"

scalaVersion := "2.10.2"
scalaVersion := "2.10.3"

scalacOptions ++= Seq("-deprecation")

libraryDependencies ++= Seq(
"org.slf4j" % "slf4j-api" % "1.6.4" intransitive (),
"org.slf4j" % "slf4j-api" % "1.7.5" intransitive (),
"org.apache.commons" % "commons-lang3" % "3.1",
"commons-pool" % "commons-pool" % "1.6",
"com.typesafe" % "config" % "1.0.0",
Expand Down
3 changes: 3 additions & 0 deletions project/plugins.sbt
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
addSbtPlugin("com.typesafe.sbt" % "sbt-site" % "0.7.1")

addSbtPlugin("com.typesafe.sbt" % "sbt-ghpages" % "0.5.2")
2 changes: 1 addition & 1 deletion src/main/scala/scredis/commands/async/SetsCommands.scala
Original file line number Diff line number Diff line change
Expand Up @@ -185,7 +185,7 @@ trait SetsCommands extends Async {
def sMembers[A](key: String)(
implicit opts: CommandOptions = DefaultCommandOptions,
parser: Parser[A] = StringParser
): Future[Set[String]] = async(_.sMembers(key))
): Future[Set[A]] = async(_.sMembers(key))

/**
* Moves a member from one set to another.
Expand Down

0 comments on commit 939af3d

Please sign in to comment.