Skip to content

Commit

Permalink
#29 build site on merge
Browse files Browse the repository at this point in the history
  • Loading branch information
yegor256 committed May 26, 2017
1 parent 2983265 commit cfb1749
Show file tree
Hide file tree
Showing 6 changed files with 9 additions and 8 deletions.
3 changes: 2 additions & 1 deletion .rultor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ architect:
merge:
script: |
mvn clean install -Pqulice --errors --settings ../settings.xml
mvn clean site -Psite --errors --settings ../settings.xml
mvn clean
pdd --source=$(pwd) --verbose --file=/dev/null
deploy:
Expand All @@ -23,4 +24,4 @@ release:
script: |-
mvn versions:set "-DnewVersion=${tag}"
git commit -am "${tag}"
mvn clean deploy -Psonatype --errors --settings ../settings.xml
mvn clean deploy -Pqulice -Psonatype --errors --settings ../settings.xml
2 changes: 1 addition & 1 deletion src/main/java/org/cactoos/func/ProcAsFunc.java
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@
* <pre> new AllOf(
* new TransformedIterable&lt;String&gt;(
* Arrays.asList("hello", "world"),
* new ProcAsFunc(i -> System.out.println(i))
* new ProcAsFunc(i -&gt; System.out.println(i))
* )
* ).asValue();</pre>
*
Expand Down
6 changes: 3 additions & 3 deletions src/main/java/org/cactoos/list/AllOf.java
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@
* <pre> new AllOf(
* new TransformedIterable&lt;String&gt;(
* Arrays.asList("hello", "world"),
* new ProcAsFunc&lt;&gt;(i -> System.out.println(i))
* new ProcAsFunc&lt;&gt;(i -&gt; System.out.println(i))
* )
* ).asValue();</pre>
*
Expand All @@ -45,15 +45,15 @@
* <pre> new AllOf(
* new IterableAsBooleans&lt;String&gt;(
* Arrays.asList("hello", "world"),
* i -> System.out.println(i)
* i -&gt; System.out.println(i)
* )
* ).asValue();</pre>
*
* <p>Or you can even use {@link IterableAsBoolean}:</p>
*
* <pre> new IterableAsBoolean&lt;String&gt;(
* Arrays.asList("hello", "world"),
* i -> System.out.println(i)
* i -&gt; System.out.println(i)
* ).asValue();</pre>
*
* <p>There is no thread-safety guarantee.
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/org/cactoos/list/IterableAsBoolean.java
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@
*
* <pre> new IterableAsBoolean&lt;&gt;(
* Arrays.asList("hello", "world"),
* i -> System.out.println(i)
* i -&gt; System.out.println(i)
* ).asValue();</pre>
*
* <p>There is no thread-safety guarantee.
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/org/cactoos/list/IterableAsBooleans.java
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@
* <pre> new AllOf(
* new IterableAsBooleans&lt;String&gt;(
* Arrays.asList("hello", "world"),
* i -> System.out.println(i)
* i -&gt; System.out.println(i)
* )
* ).asValue();</pre>
*
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/org/cactoos/text/TrimmedText.java
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
import org.cactoos.Text;

/**
* Text without control characters (char <= 32) from both ends.
* Text without control characters (char &lt;= 32) from both ends.
*
* <p>There is no thread-safety guarantee.
*
Expand Down

0 comments on commit cfb1749

Please sign in to comment.