Skip to content

Commit dc66f55

Browse files
committedJun 2, 2014
Merge remote-tracking branch 'origin/master'
2 parents d59808e + 753d987 commit dc66f55

File tree

1 file changed

+21
-21
lines changed

1 file changed

+21
-21
lines changed
 

‎CONTRIBUTING.md

+21-21
Original file line numberDiff line numberDiff line change
@@ -1,38 +1,38 @@
11
CONTRIBUTING
22
------------
3-
AsyncHttpClient is an open-source project made by developers for developers!
4-
If you would like to contribute to the project, that's really great. You can contribute in a variety of ways:
3+
AsyncHttpClient is an open-source project made by developers for developers!
4+
If you would like to contribute to the project, that's really great. You can contribute in a variety of ways:
55

6-
1) Help us with test cases and examples for the Wiki
7-
2) If you have a good idea/patch for the project, create a pull request (see PULL)
8-
3) Found a bug? You're more than welcome to submit an issue (see ISSUES)
6+
1) Help us with test cases and examples for the Wiki
7+
2) If you have a good idea/patch for the project, create a pull request (see PULL)
8+
3) Found a bug? You're more than welcome to submit an issue (see ISSUES)
99
4) Help other fellow developers solve their problems, you're welcome to do so in issues
1010

1111
We do require certain guidelines to be followed so that the quality of the project remains top-notch:
1212

1313
1. PULL requests
1414
----------------
15-
When you submit a patch or a new functionality for the project, you must open a pull request. We will get to the pull request as soon as possible, investigate what functionality or bug fixes have been added and decide whether to include it in the library or not -- for the benefit of everyone.
16-
You further agree that any contribution that you make to the library will be distributed further under the same license as the library itself (Apache v2.0).
17-
Don't be discouraged if your pull request is rejected. This is not a deadline and sometimes with a proper explanation on your side, we are persuaded to merge in the request. Just remember that this is a library for everyone and as such must meet certain, generic rules that we would like to believe are following.
15+
When you submit a patch or a new functionality for the project, you must open a pull request. We will get to the pull request as soon as possible, investigate what functionality or bug fixes have been added and decide whether to include it in the library or not -- for the benefit of everyone.
16+
You further agree that any contribution that you make to the library will be distributed further under the same license as the library itself (Apache v2.0).
17+
Don't be discouraged if your pull request is rejected. This is not a deadline and sometimes with a proper explanation on your side, we are persuaded to merge in the request. Just remember that this is a library for everyone and as such must meet certain, generic rules that we would like to believe are following.
1818

1919
2. ISSUES
2020
---------
21-
The issues system is the place to report bugs. Please do not use it to submit patches or new functionality. As helpful as we would like to be, we cannot replace the developer and we certainly do not see what you're seeing. So when you come to report an issue, please follow these simple rules:
21+
The issues system is the place to report bugs. Please do not use it to submit patches or new functionality. As helpful as we would like to be, we cannot replace the developer and we certainly do not see what you're seeing. So when you come to report an issue, please follow these simple rules:
2222

23-
1) Reporting bugs in English language only
24-
2) If the issue is due to a crash, we need the stack trace -- throwable.printStackTrace() -- and any other detail that will shed light on the problem
25-
3) We need to see the source code (minus certain details that you think are confidential) that caused the problem in the first place
26-
4) Opening issues without providing us with the information necessary to debug and fix it is useless; so we will close such issues within 7 days period
23+
1) Reporting bugs in English language only
24+
2) If the issue is due to a crash, we need the stack trace -- throwable.printStackTrace() -- and any other detail that will shed light on the problem
25+
3) We need to see the source code (minus certain details that you think are confidential) that caused the problem in the first place
26+
4) Opening issues without providing us with the information necessary to debug and fix it is useless; so we will close such issues within 7 days period
2727

2828
3. CODING STANDARDS
2929
-------------------
30-
We need you to follow certain rules when sending source code contributions. These are the basic principles that we ourselves abide to and we require that you do so too:
30+
We need you to follow certain rules when sending source code contributions. These are the basic principles that we ourselves abide to and we require that you do so too:
3131

32-
1) Do not use the Tab character (it's in first place for a reason)
33-
2) Indentation is 4 spaces
34-
3) You must provide proper Javadoc, including description, in English for both public and protected methods, classes and properties
35-
4) Group packages that belong to the same top-level package together, followed by an empty line
36-
5) Add an empty line after and before class/interface declarations, methods and constructors
37-
6) Add an empty line before and after a group of properties
38-
7) Do not catch generic Exception/Throwable errors, but always catch the most specific type of the exception/error
32+
1) Do not use the Tab character (it's in first place for a reason)
33+
2) Indentation is 4 spaces
34+
3) You must provide proper Javadoc, including description, in English for both public and protected methods, classes and properties
35+
4) Group packages that belong to the same top-level package together, followed by an empty line
36+
5) Add an empty line after and before class/interface declarations, methods and constructors
37+
6) Add an empty line before and after a group of properties
38+
7) Do not catch generic Exception/Throwable errors, but always catch the most specific type of the exception/error

0 commit comments

Comments
 (0)
Please sign in to comment.