Coding Standards » History » Revision 6
« Previous |
Revision 6/14
(diff)
| Next »
Felix Schäfer, 2011-01-18 02:01
Coding Standards¶
Ruby and Rails Code¶
TODO: until then, follow the basic Ruby and Rails standards.
Javascript¶
TODO
CSS¶
TODO
Documentation¶
Document you methods as needed and make sure any complex code is explained (e.g. regular expression parsing). If it can't be understood 7 days later, it won't be understand next year and will need to be rewritten.
Tests¶
Make sure any new code is tested, especially in the Controllers and Models. Code without tests may (and probably will) be rejected on that reason alone. Redmine is a very complex application with a lot of authentication and authorization code, so it's vital that changes are tested fully. Please don't take any offensive from this hard stance, protecting everyone's data and trust in the system is very important.
Commits¶
Commits should be formatted as below. If you are contributed via git, this will save the committer a bunch of time:
Short summary of your commit, 72 characters. #nnnn (This is optional) Longer description of the change, including a list of what changed if it's a major change. Limit each line to 72 characters and use basic textile (* for lists). Contributed by Your Name
Updated by Felix Schäfer almost 14 years ago · 6 revisions