forked from fl00r/go-tarantool-1.6
-
Notifications
You must be signed in to change notification settings - Fork 60
Make documentation great again #151
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from all commits
Commits
Show all changes
26 commits
Select commit
Hold shift + click to select a range
a2d1a91
readme: remove commented out travis-ci badge
ligurio 830806d
readme: add badges
ligurio b608826
readme: update description
ligurio cdce54c
doc: update inline comments
ligurio eba0aeb
queue: make example executable
ligurio 2585a15
readme: move queue example to tests
ligurio 4c38d9f
readme: move usage examples to tests
ligurio 56cba67
example: make examples more compact
ligurio ca994c8
readme: move uuid example to tests
ligurio ebb4eb0
readme: move schema example to tests
ligurio 0897e6b
readme: move custom unpacking example to tests
ligurio 2050230
readme: move description of options to inline comment
ligurio 514e106
readme: move description of multiple connections to comment
ligurio ba02544
multi: add documentation comments
ligurio 2e5515f
multi: add examples for connect functions
ligurio 67e0df4
readme: update section about testing
ligurio dbef3fd
readme: update section about installation
ligurio e6a045e
readme: move section about testing to contributing guide
ligurio 675b5c4
contributing: describe first steps
ligurio 17c9346
readme: update section about API reference
ligurio cbb0ea3
readme: remove hello world example
ligurio 2a36168
readme: remove help section
ligurio d6ff9b4
readme: merge documentation sections into single one
ligurio 8384e84
readme: update section about alternative connectors
ligurio 392d004
changelog: add entry about updated documentation
ligurio 20c78db
license: bump copyright year
ligurio File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,39 @@ | ||
# Contribution Guide | ||
|
||
## First steps | ||
|
||
Clone the repository and install dependencies. | ||
|
||
```sh | ||
$ git clone [email protected]:/tarantool/go-tarantool | ||
$ cd go-tarantool | ||
$ go get . | ||
``` | ||
|
||
## Running tests | ||
|
||
You need to [install Tarantool](https://tarantool.io/en/download/) to run tests. | ||
See the Installation section in the README for requirements. | ||
|
||
To install test dependencies (such as the | ||
[tarantool/queue](https://github.com/tarantool/queue) module), run: | ||
```bash | ||
make deps | ||
``` | ||
|
||
To run tests for the main package and each subpackage: | ||
```bash | ||
make test | ||
``` | ||
|
||
The tests set up all required `tarantool` processes before run and clean up | ||
afterwards. | ||
|
||
If you want to run the tests for a specific package: | ||
```bash | ||
make test-<SUBDIR> | ||
``` | ||
For example, for running tests in `multi`, `uuid` and `main` packages, call | ||
```bash | ||
make test-multi test-uuid test-main | ||
``` |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.