pushtorefresh / storio

Reactive API for SQLiteDatabase and ContentResolver.
Apache License 2.0
2.55k stars 182 forks source link

Packages naming policy: Switch from Singular to Plural #412

Closed artem-zinnatullin closed 9 years ago

artem-zinnatullin commented 9 years ago

Hope it's last issue before 1.0.0.

Package naming policy:

http://programmers.stackexchange.com/questions/75919/should-package-names-be-singular-or-plural

Currently we have "Singular" variant of packages naming, for example: com.pushtorefresh.stroio.sqlite.operation, but in fact it contains several Operations and it'll be more correctly to name it com.pushtorefresh.stroio.sqlite.operations.

Also, we will have more cool artifact for sqlite-annotations:

Before: compile 'com.pushtorefresh.storio:sqlite-annotation:+' After: compile 'com.pushtorefresh.storio:sqlite-annotations:+' // in fact, there are several annotations

@nikitin-da your thoughts?

nikitin-da commented 9 years ago

Matthew Rodatus is convincing. I completely agree.