I hereby claim:
- I am danielkocot on github.
- I am dk_1977 (https://keybase.io/dk_1977) on keybase.
- I have a public key whose fingerprint is DC97 EB68 6B96 958A 6733 B4EF 4913 8983 376A 9198
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
task createjbakeignorefile { | |
group = "documentation" | |
doLast { | |
def allFiles = fileTree("src/documentation/content/test-reports").filter { it.isFile()}.files.name | |
allFiles.remove("index.ad") | |
allFiles.remove("aggregated_report.json") | |
def ignorefileName = "src/documentation/content/test-reports/.jbakeignore" | |
def ignoreFile = new File(ignorefileName) | |
ignoreFile.write(allFiles.join("\n")) | |
} |
com.athaydes.spockframework.report.IReportCreator=com.athaydes.spockframework.report.template.TemplateReportCreator | |
com.athaydes.spockframework.report.template.TemplateReportCreator.specTemplateFile=/template/spec-template.ad | |
com.athaydes.spockframework.report.template.TemplateReportCreator.reportFileExtension=ad | |
com.athaydes.spockframework.report.template.TemplateReportCreator.summaryTemplateFile=/template/summary-template.ad | |
com.athaydes.spockframework.report.template.TemplateReportCreator.summaryFileName=index.ad | |
com.athaydes.spockframework.report.outputDir=src/documentation/content/test-reports | |
com.athaydes.spockframework.report.hideEmptyBlocks=false |
task createSpockSpecs { | |
group = "Generating Spock Specs from gherkin" | |
doLast { | |
def gherkinFiles = fileTree("src/test/resources/Features").files | |
def specBlock | |
gherkinFiles.each { | |
File transformFile = new File("$projectDir/src/test/groovy/$it.name".replaceFirst(~/\.[^\.]+$/,'Spec.groovy')) | |
if (!transformFile.exists()) { |
Feature: Search | |
Scenario: Simple Search | |
Given a web browser is on the Google page | |
When the search phrase "codecentric" is entered | |
Then results for "codecentric" are shown |
#!/bin/bash | |
#title :wildfly-install.sh | |
#description :The script to install Wildfly 10.x | |
#more :http://sukharevd.net/wildfly-8-installation.html | |
#author :Dmitriy Sukharev | |
#date :2016-06-18T02:45-0700 | |
#usage :/bin/bash wildfly-install.sh | |
#tested-version1 :10.0.0.CR3 | |
#tested-distros1 :Ubuntu 15.10; Debian 7,8; CentOS 7; Fedora 22 | |
#tested-version2 :10.0.0.Final |
#!/bin/bash | |
#title :wildfly-install.sh | |
#description :The script to install Wildfly 10.x | |
#more :http://sukharevd.net/wildfly-8-installation.html | |
#author :Dmitriy Sukharev | |
#date :2016-06-18T02:45-0700 | |
#usage :/bin/bash wildfly-install.sh | |
#tested-version1 :10.0.0.CR3 | |
#tested-distros1 :Ubuntu 15.10; Debian 7,8; CentOS 7; Fedora 22 | |
#tested-version2 :10.0.0.Final |