Skip to content

Commit

Permalink
Velocy client, Endpoint structs, tests and docs
Browse files Browse the repository at this point in the history
  • Loading branch information
suazithustra committed Sep 24, 2019
2 parents e04ba44 + 7f5012e commit 17de1a3
Show file tree
Hide file tree
Showing 22 changed files with 1,202 additions and 532 deletions.
2 changes: 1 addition & 1 deletion .credo.exs
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@
# If you don't want TODO comments to cause `mix credo` to fail, just
# set this value to 0 (zero).
#
{Credo.Check.Design.TagTODO, [exit_status: 2]},
{Credo.Check.Design.TagTODO, [exit_status: 0]},
{Credo.Check.Design.TagFIXME, []},

#
Expand Down
3 changes: 1 addition & 2 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -20,5 +20,4 @@ erl_crash.dump
*.ez

# Ignore package tarball (built via "mix hex.build").
arangox-*.tar

arangox-*.tar
7 changes: 7 additions & 0 deletions .iex.exs
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
alias Arangox.Request
alias Arangox.Response
alias Arangox.Endpoint
alias Arangox.Connection
alias Arangox.Client
alias Arangox.Client.Gun
alias Arangox.Client.Mint
9 changes: 4 additions & 5 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,13 +9,12 @@ matrix:
- elixir: 1.6
otp_release: 20.0
script:
- MIX_ENV=test mix do deps.get, test
- MIX_ENV=test mix do deps.get, credo --strict, test
- elixir: 1.9
otp_release: 22.0
script:
- mix format --check-formatted
- MIX_ENV=test mix do deps.get, test
- MIX_ENV=test mix do deps.get, credo --strict, test
branches:
only:
- master
- dev
- master
- dev
Loading

0 comments on commit 17de1a3

Please sign in to comment.