stempler / gradle-versioneye-plugin

Plugin for Gradle to update your project's dependencies status on www.versioneye.com
MIT License
31 stars 5 forks source link

Use camelcase task names #4

Closed johnjohndoe closed 9 years ago

johnjohndoe commented 9 years ago

I suggest following the common name schemata of Gradle tasks which use camelcase for their task names such as assembleDebugTest or uninstallRelease. A benefit of this is that abbreviations can be used such as ./gradlew aDT instead of ./gradlew assembleDebugTest. This works wherever the abbreviation can be resolved to a distinct task name.

stempler commented 9 years ago

Ah, I admit I never used the abbreviations feature. I guess we could add aliases for the main tasks - I would prefer to retain the original names for backwards compatibility. What camelcase names would you propose? versioneyeUpdate, versionEyeUpdate or even something like versioneYeUpdate ;) ?

johnjohndoe commented 9 years ago

Since "VersionEye" uses camelcase itself I suggest the following task names:

Feel free to add aliases and to deprecate the former names.

stempler commented 9 years ago

The new task names are available in version 1.0.1. Happy abbreviating!

johnjohndoe commented 9 years ago

:+1: Cool. Thank you.