Skip to content

Commit 5f2d59f

Browse files
authored
Merge pull request #233 from comtihon/rebar3_branch
try to fix tests
2 parents 8d8b03e + 3e9846e commit 5f2d59f

File tree

11 files changed

+17
-7
lines changed

11 files changed

+17
-7
lines changed

.gitignore

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,4 +6,5 @@ logs/
66
*.beam
77
variables-ct*
88
*.iml
9-
data
9+
data
10+
_build

.travis.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@ dist: trusty
22
sudo: required
33
language: erlang
44
otp_release:
5-
- 21.0
65
- 20.0
76
- 19.0
87
- 18.0

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
PROJECT = mongodb
22

33
DIALYZER = dialyzer
4-
REBAR = $(shell which rebar || echo ./rebar)
4+
REBAR = $(shell which rebar3 || echo ./rebar3)
55

66
all: app
77

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
This is the [MongoDB](https://www.mongodb.org/) driver for Erlang.
22

3-
[![Build Status](https://travis-ci.org/comtihon/mongodb-erlang.svg?branch=master)](https://travis-ci.org/comtihon/mongodb-erlang)
3+
[![Build Status](https://travis-ci.com/comtihon/mongodb-erlang.svg?branch=master)](https://travis-ci.com/comtihon/mongodb-erlang)
44
[![Enot](https://enot.justtech.blog/badge?full_name=comtihon/mongodb-erlang)](https://enot.justtech.blog)
55

66
### Usage

docker-compose.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,4 +9,4 @@ services:
99
MONGO_INITDB_ROOT_PASSWORD: "test"
1010
ports:
1111
- 27017:27017
12-
command: mongod --smallfiles --logpath=/dev/null
12+
command: mongod --logpath=/dev/null

rebar

-99.1 KB
Binary file not shown.

rebar.config

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,6 @@
33
{erl_opts, [debug_info, fail_on_warning]}.
44
{edoc_opts, [{index_columns, 1}, {sort_functions, false}, {preprocess, true}]}.
55

6-
{plugins, [rebar_ct]}.
7-
86
{deps, [
97
{bson, ".*",
108
{git, "git://github.com/comtihon/bson-erlang", {tag, "v0.2.2"}}},

rebar.lock

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
[{<<"bson">>,
2+
{git,"git://github.com/comtihon/bson-erlang",
3+
{ref,"14308ab927cfa69324742c3de720578094e0bb19"}},
4+
0},
5+
{<<"pbkdf2">>,
6+
{git,"git://github.com/comtihon/erlang-pbkdf2.git",
7+
{ref,"5201a735639496fc595061160117e4ec155d73f5"}},
8+
0},
9+
{<<"poolboy">>,
10+
{git,"git://github.com/comtihon/poolboy.git",
11+
{ref,"9c06a9ad4e700e0724a2e3c4b44c5f5d51380a0d"}},
12+
0}].

rebar3

921 KB
Binary file not shown.
File renamed without changes.

0 commit comments

Comments
 (0)