Sha256: 8286fcaa229d62faad74d039940bccbfd16cd4449d3c344d7698de54d79a4b41
Contents?: true
Size: 751 Bytes
Versions: 19
Compression:
Stored size: 751 Bytes
Contents
apply plugin: 'com.github.jruby-gradle.base' import com.github.jrubygradle.JRubyExec jruby { execVersion = project.jrubyVersion } 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' } 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