6 lines
No EOL
274 B
Groovy
6 lines
No EOL
274 B
Groovy
ext.getDictionarySizes = { dictionariesDir, sizesDir ->
|
|
fileTree(dir: dictionariesDir).forEach {dictionary ->
|
|
def dictionarySize = dictionary.exists() ? dictionary.text.split("\n").length : 0
|
|
new File(sizesDir, "${dictionary.getName()}.size").text = dictionarySize
|
|
}
|
|
} |