Groovy:
if there`s my_object -> access \'name\' and capitalize
my_object?.name?.capitalize()
What is the equivalent for ruby to avo
The andand gem provides this functionality.
my_object.andand.name.andand.capitalize()