forked from adarro/ddo-calc
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #97 from truthencode/sync/truth2adarro
Sync/truth2adarro
- Loading branch information
Showing
258 changed files
with
11,319 additions
and
40 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,7 @@ | ||
version: 0.1 | ||
cli: | ||
cli: | ||
version: 1.15.0 | ||
|
||
plugins: | ||
sources: | ||
- id: trunk | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
39 changes: 39 additions & 0 deletions
39
...mmon/ddo-core/src/acceptanceTest/java/io/truthencode/ddo/model/destiny/EpicDestinies.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,39 @@ | ||
/* | ||
* SPDX-License-Identifier: Apache-2.0 | ||
* | ||
* Copyright 2015-2021 Andre White. | ||
* | ||
* Licensed under the Apache License, Version 2.0 (the "License"); | ||
* you may not use this file except in compliance with the License. | ||
* You may obtain a copy of the License at | ||
* | ||
* https://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software | ||
* distributed under the License is distributed on an "AS IS" BASIS, | ||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
* See the License for the specific language governing permissions and | ||
* limitations under the License. | ||
*/ | ||
package io.truthencode.ddo.model.destiny; | ||
|
||
import com.vladsch.flexmark.ext.emoji.EmojiExtension; | ||
import com.vladsch.flexmark.parser.Parser; | ||
import com.vladsch.flexmark.util.data.DataSet; | ||
import com.vladsch.flexmark.util.data.MutableDataSet; | ||
import com.vladsch.flexmark.util.misc.Extension; | ||
import org.concordion.api.option.FlexmarkOptions; | ||
import org.concordion.integration.junit4.ConcordionRunner; | ||
import org.junit.runner.RunWith; | ||
|
||
import java.util.List; | ||
|
||
@RunWith(ConcordionRunner.class) | ||
public class EpicDestinies { | ||
private final transient List<Extension> e = List.of(EmojiExtension.create()); | ||
@FlexmarkOptions | ||
DataSet flexmarkOptions = new MutableDataSet() | ||
.set(EmojiExtension.ATTR_IMAGE_SIZE, "24") | ||
.set(Parser.EXTENSIONS, e); | ||
|
||
} |
25 changes: 25 additions & 0 deletions
25
...cts/common/ddo-core/src/acceptanceTest/java/io/truthencode/ddo/model/feats/DodgeSpec.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
/* | ||
* SPDX-License-Identifier: Apache-2.0 | ||
* | ||
* Copyright 2015-2021 Andre White. | ||
* | ||
* Licensed under the Apache License, Version 2.0 (the "License"); | ||
* you may not use this file except in compliance with the License. | ||
* You may obtain a copy of the License at | ||
* | ||
* https://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software | ||
* distributed under the License is distributed on an "AS IS" BASIS, | ||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
* See the License for the specific language governing permissions and | ||
* limitations under the License. | ||
*/ | ||
package io.truthencode.ddo.model.feats; | ||
|
||
import org.concordion.integration.junit4.ConcordionRunner; | ||
import org.junit.runner.RunWith; | ||
|
||
@RunWith(ConcordionRunner.class) | ||
public class DodgeSpec { | ||
} |
3 changes: 3 additions & 0 deletions
3
...common/ddo-core/src/acceptanceTest/resources/acceptanceTests/AcceptanceTests.md
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
# AcceptanceTests | ||
|
||
- [Model](../io/truthencode/ddo/model/Model.html "c:run") |
Oops, something went wrong.