/unixized

A small library that makes non-unix files in unix format

Primary LanguageJavaMIT LicenseMIT

Unixized

Just small Java library which allow you to not think about line separators of some files.

How to use

I'll provide just small unit test

final class README {
    public static void main(final String[] args) {
        final ResourceOf before = new ResourceOf("not-unix-file.txt");
        assertThat(
            "Text in windows format",
            new TextOf(before).asString(),
            containsString("\r")
        );
        final Unixized actual = new UnixizedOf(before);
        assertThat(
            "Unixized text",
            actual.asText().asString(),
            not(containsString("\r"))
        );
    }
}

How to install

Maven:

<dependency>
    <groupId>ru.l3r8y</groupId>
    <artifactId>unixized</artifactId>
    <version><!--get-latest--></version>
</dependency>

How to Contribute

Fork repository, make changes, send us a pull request. We will review your changes and apply them to the master branch shortly, provided they don't violate our quality standards. To avoid frustration, before sending us your pull request please run full Maven build:

$ mvn clean install -Pqulice

You will need Maven 3.3+ and Java 8+.