All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.autonomousapps.internal.advice.DslKind.kt Maven / Gradle / Ivy

There is a newer version: 2.0.2
Show newest version
package com.autonomousapps.internal.advice

import java.io.File

enum class DslKind {
  GROOVY,
  KOTLIN;

  companion object {
    fun from(file: File): DslKind {
      return when (file.name.substringAfter('.')) {
        "gradle" -> GROOVY
        "gradle.kts" -> KOTLIN
        else -> error("Unknown file type: $file")
      }
    }
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy