Skip to content
This repository was archived by the owner on Dec 17, 2018. It is now read-only.

Commit ef01a8e

Browse files
committed
Rename project
1 parent a8e2bfd commit ef01a8e

20 files changed

+1237
-1692
lines changed

.tool-versions

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
erlang 21.0.4
1+
erlang 21.0.1
22
elixir 1.6.6-otp-21

Makefile

+1-1
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ endif
3535

3636
OBJ = $(SRC:.c=.o)
3737

38-
NIF=priv/esqlite3_nif.so
38+
NIF=priv/sqlite3_nif.so
3939

4040
all: priv $(NIF)
4141

c_src/esqlite3_nif.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -1263,4 +1263,4 @@ static ErlNifFunc nif_funcs[] = {
12631263
{"enable_load_extension", 3, esqlite_enable_load_extension}
12641264
};
12651265

1266-
ERL_NIF_INIT(Elixir.Esqlite3Nif, nif_funcs, on_load, on_reload, on_upgrade, NULL);
1266+
ERL_NIF_INIT(Elixir.Sqlite3Nif, nif_funcs, on_load, on_reload, on_upgrade, NULL);

config/config.exs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
# This file is responsible for configuring your application
22
# and its dependencies with the aid of the Mix.Config module.
33
use Mix.Config
4-
config :esqlite, default_timeout: 5000
4+
config :sqlite, default_timeout: 5000

0 commit comments

Comments
 (0)