views:

124

answers:

1

Hey,

how do you name your groovy scripts? Does it depends on the enviroment? Do you name groovy classes diffent to groovy scripts?

Example:

  convert_csv_to_xml.groovy
  ConvertCSVtoXML.groovy
  ...

What do you think?

A: 

When in doubt, use Grails as an example. For Grails 1.0.4 (and presumably above), its scripts use the title-case (e.g. CreateApp.groovy).

Michael Easter