net.wooga.asdf-ruby
Owner: Manne Endres
A ruby plugin for gradle
https://wooga.github.io/atlas-asdf/
Sources: https://github.com/wooga/atlas-asdf
Using the plugins DSL:
plugins {
id("net.wooga.asdf-ruby") version "2.0.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("net.wooga.gradle:asdf:2.0.0")
}
}
apply(plugin = "net.wooga.asdf-ruby")
Using the plugins DSL:
plugins {
id "net.wooga.asdf-ruby" version "2.0.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "net.wooga.gradle:asdf:2.0.0"
}
}
apply plugin: "net.wooga.asdf-ruby"