Skip to content

Commit

Permalink
Merge 960650c into 4bbb0ff
Browse files Browse the repository at this point in the history
  • Loading branch information
amihaiemil committed Sep 10, 2018
2 parents 4bbb0ff + 960650c commit f3bc38a
Show file tree
Hide file tree
Showing 64 changed files with 69 additions and 69 deletions.
2 changes: 1 addition & 1 deletion README.md
@@ -1,5 +1,5 @@
# eo-yaml
<img alt="camel" src="http://www.amihaiemil.com/images/camila2.png" width="120" height="70"/>
<img alt="eo-yaml" src="http://www.amihaiemil.com/images/camila2.png" width="120" height="70"/>

[![PDD status](http://www.0pdd.com/svg?name=decorators-squad/eo-yaml)](http://www.0pdd.com/p?name=decorators-squad/eo-yaml)
[![Build Status](https://travis-ci.org/decorators-squad/eo-yaml.svg?branch=master)](https://travis-ci.org/decorators-squad/eo-yaml)
Expand Down
2 changes: 1 addition & 1 deletion checkstyle.xml
Expand Up @@ -13,7 +13,7 @@
* 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.
* Neither the name of camel nor the names of its
* Neither the name of eo-yaml nor the names of its
contributors may be used to endorse or promote products derived from
this software without specific prior written permission.
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
Expand Down
4 changes: 2 additions & 2 deletions pom.xml
Expand Up @@ -3,7 +3,7 @@
<modelVersion>4.0.0</modelVersion>
<groupId>com.amihaiemil.web</groupId>
<artifactId>eo-yaml</artifactId>
<version>1.0.4-SNAPSHOT</version><!--rrv-sed-flag-->
<version>0.0.1-SNAPSHOT</version><!--rrv-sed-flag-->
<packaging>jar</packaging>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
Expand Down Expand Up @@ -195,7 +195,7 @@
<artifactId>maven-assembly-plugin</artifactId>
<version>2.6</version>
<configuration>
<finalName>camel-${project.version}</finalName>
<finalName>eo-yaml-${project.version}</finalName>
<descriptorRefs>
<descriptorRef>jar-with-dependencies</descriptorRef>
</descriptorRefs>
Expand Down
Expand Up @@ -25,7 +25,7 @@
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
*/
package com.amihaiemil.camel;
package com.amihaiemil.eoyaml;

/**
* A Yaml representer.
Expand Down
Expand Up @@ -25,7 +25,7 @@
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
*/
package com.amihaiemil.camel;
package com.amihaiemil.eoyaml;

/**
* Iterable yaml lines.
Expand Down
Expand Up @@ -25,7 +25,7 @@
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
*/
package com.amihaiemil.camel;
package com.amihaiemil.eoyaml;

import java.util.Iterator;
import java.util.Set;
Expand Down
Expand Up @@ -25,7 +25,7 @@
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
*/
package com.amihaiemil.camel;
package com.amihaiemil.eoyaml;

import java.util.Collection;
import java.util.Iterator;
Expand Down
Expand Up @@ -25,7 +25,7 @@
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
*/
package com.amihaiemil.camel;
package com.amihaiemil.eoyaml;

/**
* Decorator class to cache values of trimmed() and indentation() method for
Expand Down
Expand Up @@ -25,7 +25,7 @@
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
*/
package com.amihaiemil.camel;
package com.amihaiemil.eoyaml;

/**
* Any Yaml line should have an even indentation (multiple of 2).
Expand Down
Expand Up @@ -25,7 +25,7 @@
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
*/
package com.amihaiemil.camel;
package com.amihaiemil.eoyaml;

/**
* Nested Yaml types.
Expand Down
Expand Up @@ -25,7 +25,7 @@
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
*/
package com.amihaiemil.camel;
package com.amihaiemil.eoyaml;

/**
* A decorator class for YamlLine to remove comments from a given YamlLine.
Expand Down
Expand Up @@ -25,7 +25,7 @@
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
*/
package com.amihaiemil.camel;
package com.amihaiemil.eoyaml;

import java.util.Collections;
import java.util.Iterator;
Expand Down
Expand Up @@ -25,7 +25,7 @@
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
*/
package com.amihaiemil.camel;
package com.amihaiemil.eoyaml;

import java.util.Collection;
import java.util.LinkedList;
Expand Down
Expand Up @@ -25,7 +25,7 @@
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
*/
package com.amihaiemil.camel;
package com.amihaiemil.eoyaml;

import java.util.Collection;
import java.util.LinkedList;
Expand Down
Expand Up @@ -25,7 +25,7 @@
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
*/
package com.amihaiemil.camel;
package com.amihaiemil.eoyaml;

import java.util.Collection;
import java.util.HashSet;
Expand Down
@@ -1,4 +1,4 @@
package com.amihaiemil.camel;
package com.amihaiemil.eoyaml;

import java.util.Collection;
import java.util.LinkedList;
Expand Down
Expand Up @@ -25,7 +25,7 @@
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
*/
package com.amihaiemil.camel;
package com.amihaiemil.eoyaml;

import java.io.BufferedReader;
import java.io.IOException;
Expand Down
Expand Up @@ -25,7 +25,7 @@
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
*/
package com.amihaiemil.camel;
package com.amihaiemil.eoyaml;

/**
* Default implementation of {@link YamlLine}.
Expand Down
@@ -1,4 +1,4 @@
package com.amihaiemil.camel;
package com.amihaiemil.eoyaml;

import java.util.ArrayList;
import java.util.Collection;
Expand Down
Expand Up @@ -25,7 +25,7 @@
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
*/
package com.amihaiemil.camel;
package com.amihaiemil.eoyaml;

import java.util.Collection;
import java.util.HashSet;
Expand Down
Expand Up @@ -25,7 +25,7 @@
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
*/
package com.amihaiemil.camel;
package com.amihaiemil.eoyaml;

import java.util.HashMap;
import java.util.Map;
Expand Down
Expand Up @@ -25,7 +25,7 @@
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
*/
package com.amihaiemil.camel;
package com.amihaiemil.eoyaml;

import java.util.Collection;
import java.util.LinkedList;
Expand Down
Expand Up @@ -25,7 +25,7 @@
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
*/
package com.amihaiemil.camel;
package com.amihaiemil.eoyaml;

import java.util.LinkedList;
import java.util.List;
Expand Down
Expand Up @@ -25,7 +25,7 @@
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
*/
package com.amihaiemil.camel;
package com.amihaiemil.eoyaml;

import java.util.Collection;
import java.util.LinkedList;
Expand Down
Expand Up @@ -25,7 +25,7 @@
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
*/
package com.amihaiemil.camel;
package com.amihaiemil.eoyaml;

import java.util.Collection;
import java.util.Set;
Expand Down
Expand Up @@ -25,7 +25,7 @@
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
*/
package com.amihaiemil.camel;
package com.amihaiemil.eoyaml;

import java.util.Collection;

Expand Down
Expand Up @@ -25,7 +25,7 @@
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
*/
package com.amihaiemil.camel;
package com.amihaiemil.eoyaml;

/**
* Decorator for YamlLine to check if the line is well indented relative to the
Expand Down
Expand Up @@ -25,7 +25,7 @@
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
*/
package com.amihaiemil.camel;
package com.amihaiemil.eoyaml;

import java.io.ByteArrayInputStream;
import java.io.File;
Expand Down
Expand Up @@ -25,7 +25,7 @@
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
*/
package com.amihaiemil.camel;
package com.amihaiemil.eoyaml;

import java.util.Collection;

Expand Down
Expand Up @@ -25,7 +25,7 @@
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
*/
package com.amihaiemil.camel;
package com.amihaiemil.eoyaml;

import java.io.IOException;

Expand Down
Expand Up @@ -25,7 +25,7 @@
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
*/
package com.amihaiemil.camel;
package com.amihaiemil.eoyaml;

/**
* A line of yaml.
Expand Down
Expand Up @@ -25,7 +25,7 @@
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
*/
package com.amihaiemil.camel;
package com.amihaiemil.eoyaml;

import java.util.Map;
import java.util.Set;
Expand Down
Expand Up @@ -25,7 +25,7 @@
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
*/
package com.amihaiemil.camel;
package com.amihaiemil.eoyaml;

/**
* A Yaml mapping.
Expand Down
Expand Up @@ -25,7 +25,7 @@
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
*/
package com.amihaiemil.camel;
package com.amihaiemil.eoyaml;

/**
* Builder of YamlMapping. Implementations should be immutable and thread-safe.
Expand Down
Expand Up @@ -25,7 +25,7 @@
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
*/
package com.amihaiemil.camel;
package com.amihaiemil.eoyaml;

import java.util.Collection;

Expand Down
Expand Up @@ -25,7 +25,7 @@
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
*/
package com.amihaiemil.camel;
package com.amihaiemil.eoyaml;

/**
* Exception thrown when a YamlNode cannot be cast to a given type.
Expand Down
Expand Up @@ -25,7 +25,7 @@
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
*/
package com.amihaiemil.camel;
package com.amihaiemil.eoyaml;

import java.util.Collection;
import java.util.Map;
Expand Down
@@ -1,4 +1,4 @@
package com.amihaiemil.camel;
package com.amihaiemil.eoyaml;

/**
* A Yaml sequence.
Expand Down
Expand Up @@ -25,7 +25,7 @@
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
*/
package com.amihaiemil.camel;
package com.amihaiemil.eoyaml;

/**
* Builder of YamlSequence. Implementations should be immutable and thread-safe.
Expand Down
Expand Up @@ -25,7 +25,7 @@
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
*/
package com.amihaiemil.camel;
package com.amihaiemil.eoyaml;

import org.hamcrest.MatcherAssert;
import org.hamcrest.Matchers;
Expand Down
Expand Up @@ -25,7 +25,7 @@
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
*/
package com.amihaiemil.camel;
package com.amihaiemil.eoyaml;

import org.hamcrest.MatcherAssert;
import org.hamcrest.Matchers;
Expand Down
Expand Up @@ -25,7 +25,7 @@
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
*/
package com.amihaiemil.camel;
package com.amihaiemil.eoyaml;

import org.hamcrest.MatcherAssert;
import org.hamcrest.Matchers;
Expand Down
Expand Up @@ -25,7 +25,7 @@
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
*/
package com.amihaiemil.camel;
package com.amihaiemil.eoyaml;

import java.util.ArrayList;
import java.util.Collections;
Expand Down
Expand Up @@ -25,7 +25,7 @@
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
*/
package com.amihaiemil.camel;
package com.amihaiemil.eoyaml;

import java.util.ArrayList;
import java.util.HashMap;
Expand Down

0 comments on commit f3bc38a

Please sign in to comment.