Skip to content

Commit 0b44ca5

Browse files
committed
readme + license
1 parent bd5fcf2 commit 0b44ca5

File tree

2 files changed

+16
-1
lines changed

2 files changed

+16
-1
lines changed

LICENSE

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
SCALAXY LICENSE
2+
3+
Copyright (c) 2012-2015 Olivier Chafik, unless otherwise specified.
4+
All rights reserved.
5+
6+
Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:
7+
8+
1. Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer.
9+
10+
2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution.
11+
12+
3. Neither the name of Scalaxy nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission.
13+
14+
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.

README.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@ Scalaxy/Streams makes your Scala 2.11.x collections code faster (official heir t
1818
* Avoids many unnecessary tuples (for instance, those introduced by `zipWithIndex`).
1919
* "Safe by default" (optimizations preserve Scala semantics, with side-effect analysis).
2020
* Available as a compiler plugin (whole project) or as a macro (surgical strikes). No runtime deps.
21+
* [BSD-licensed](./LICENSE)
2122

2223
```scala
2324
// For instance, given the following array:
@@ -363,7 +364,7 @@ If you want to build / test / hack on this project:
363364

364365
git clone git://github.com/ochafik/Scalaxy.git
365366
cd Scalaxy
366-
sbt "project scalaxy-streams" "; clean ; ~test"
367+
sbt "project scalaxy-streams" "; clean ; test-only *PerformanceTest"
367368

368369
* Want to see what's going on when you compile a project with Scalaxy/Streams?
369370

0 commit comments

Comments
 (0)