Skip to content

Latest commit

 

History

History

core

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 

Chamaleon Core

Library that parses the cha files and returns the set of environments. It's consumed by the Gradle plugin and the Intellij Plugin

How it works?

Just create an EnvironmentsProcessor, and it will parse the directory provided and give you the environments if present

val file = File("MyDirectory")

val environmentsProcessor = EnvironmentsProcessor(file)

val environments = environmentsProcessor.environments()

val someEnvironment = environments.first()