Merge pull request #28 from martinsumner/mas-rename

Renaming
This commit is contained in:
Martin Sumner 2017-02-28 01:40:27 +00:00 committed by GitHub
commit ddb2a51bfe
3 changed files with 11 additions and 5 deletions

View file

@ -1,4 +1,4 @@
{application, eleveleddb,
{application, leveled,
[
{description, "Key Value store based on LSM-Tree and designed for larger values"},
{vsn, "1"},
@ -7,6 +7,6 @@
kernel,
stdlib
]},
{mod, { eleveleddb_app, []}},
{mod, { leveled_app, []}},
{env, [{root_path, "test"}]}
]}.

View file

@ -1,4 +1,4 @@
-module(eleveleddb_app).
-module(leveled_app).
-behaviour(application).
@ -9,8 +9,11 @@
%% Application callbacks
%% ===================================================================
%% Currently this is just to keep dialyzer happy
%% Run the store diretcly using leveled_bookie:book_start/4 or bookie_start/1
start(_StartType, _StartArgs) ->
eleveleddb_sup:start_link().
leveled_sup:start_link().
stop(_State) ->
ok.

View file

@ -1,4 +1,4 @@
-module(eleveleddb_sup).
-module(leveled_sup).
-behaviour(supervisor).
@ -15,6 +15,9 @@
%% API functions
%% ===================================================================
%% Currently this is just to keep dialyzer happy
%% Run the store directly using leveled_bookie:book_start/4 or bookie_start/1
start_link() ->
supervisor:start_link({local, leveled_bookie}, ?MODULE, []).