Skip to content

Instantly share code, notes, and snippets.

View mrhaki's full-sized avatar
🇪🇺

Hubert Klein Ikkink mrhaki

🇪🇺
View GitHub Profile

Asciidoc on GitHub

@mrhaki
mrhaki / build.gradle
Created February 29, 2016 20:12
Small build.gradle sample file for creating tasks and testing with Spcok
apply plugin: 'groovy'
apply plugin: 'idea'
repositories {
jcenter()
}
dependencies {
compile gradleApi()
testCompile('org.spockframework:spock-core:1.0-groovy-2.4') {
@mrhaki
mrhaki / build.gradle
Created February 23, 2015 12:54
Simple inline macro for JIRA issue linking in Asciidoctor with Gradle
buildscript {
repositories {
jcenter()
}
dependencies {
classpath 'org.asciidoctor:asciidoctor-gradle-plugin:1.5.2'
}
}
@mrhaki
mrhaki / adoc-passthrough-sample-groovy
Last active August 29, 2015 14:02
Show passthrough feature of Asciidoc
def sample = (1..4).collect { it * 2 }
assert sample == [2,4,6,8]