Scala Util 
A fistful of idiosyncratic, small general-purpose tools for Scala. Inspired by Twitter's own [Util] twitter-util project.
Installation
Add this to your SBT config:
// Dependency
val scalaUtil = "com.snowplowanalytics" % "util" % "0.2.1"
Quick start
Tap
Ruby-style tap()
for all objects. See [this blog post] tap-blog for background.
import com.snowplowanalytics.util.Tap._
val event = new SnowPlowEvent().tap { e =>
e.mkt_medium = "cpc"
e.mkt_source = null
e.mkt_term = "buy scifi books"
e.mkt_content = null
e.mkt_campaign = "uk-fiction--scifi-books-text"
}
More soon
More tools coming soon...
Questions or need help?
This is a Snowplow Analytics project. Please see the [Talk to us] snowplow-talk page on the Snowplow wiki for ways of getting in touch.
Copyright and license
Scala Util is copyright 2012 Snowplow Analytics Ltd.
Licensed under the [Apache License, Version 2.0] license (the "License"); you may not use this software except in compliance with the License.
Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.