Sha256: 4015b8605f86b0b8d536f05241e47b6e8130018eed4c43c16de230b311b04dde
Contents?: true
Size: 701 Bytes
Versions: 19
Compression:
Stored size: 701 Bytes
Contents
apply plugin: 'com.github.jruby-gradle.base' dependencies { jrubyExec 'rubygems:yard:0.8.7.6' } task sphinx_html(type: Exec) { workingDir '.' commandLine 'make' args 'html' } task javadoc_html(type: Copy, dependsOn: [':embulk-core:javadoc']) { doFirst { file('build/html/javadoc').mkdirs() } from project(':embulk-core').javadoc.destinationDir into 'build/html/javadoc' } import com.github.jrubygradle.JRubyExec task rdoc_html(type: JRubyExec) { workingDir '..' jrubyArgs '-ryard', '-eYARD::CLI::Yardoc.run(*ARGV)', '--', '-o', 'embulk-docs/build/html/rdoc' script 'lib' } task site(type: Copy, dependsOn: ['sphinx_html', 'rdoc_html', 'javadoc_html']) { }
Version data entries
19 entries across 19 versions & 1 rubygems