Popularity
0.9
Stable
Activity
0.0
Stable
8
3
1

Programming language: Kotlin
Tags: Misc    
Latest version: v1.1

groothy alternatives and similar libraries

Based on the "Misc" category.
Alternatively, view groothy alternatives based on common mentions on social networks and blogs.

Do you think we are missing an alternative of groothy or a related project?

Add another 'Misc' Library

README

Kotlin implementation of Groovy Truth

Example

if("".isTrue()) //false  
if(" ".isTrue()) //false  
if("hello, world".isTrue()) //true 

Maven

You must configure your pom.xml file using JCenter repository

<repository>
    <id>central</id>
    <name>bintray</name>
    <url>http://jcenter.bintray.com</url>
</repository>
<dependency>
  <groupId>com.joelws</groupId>
  <artifactId>groothy</artifactId>
  <version>1.1</version>
</dependency>

Gradle

    repositories {
        jcenter()
    }

compile 'com.joelws:groothy:1.1'