Skip to content
This repository was archived by the owner on Sep 22, 2024. It is now read-only.
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -8,3 +8,5 @@ ebin
rel/example_project
.concrete/DEV_MODE
.rebar
rebar3
_build/
124 changes: 0 additions & 124 deletions .idea/uiDesigner.xml

This file was deleted.

24 changes: 24 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
.PHONY: all clean deps distclean compile rebar

# allow rebar binary to be set via environment variable
REBAR ?= ./rebar3

all:
@$(REBAR) get-deps compile

deps:
@$(REBAR) get-deps

clean:
@$(REBAR) clean

distclean: clean
@$(REBAR) delete-deps

compile:
@$(REBAR) compile

rebar:
wget https://s3.amazonaws.com/rebar3/rebar3
chmod +x rebar 3

5 changes: 5 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,2 +1,7 @@
# escaliot
Library on top of escalus for the IoT over XMPP

```bash
make rebar3
make
```
Binary file removed rebar
Binary file not shown.
6 changes: 3 additions & 3 deletions rebar.config
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
{erl_opts, [debug_info,
{i, ["include"]}]}.

{require_otp_vsn, "R?1[4567]"}.
{minimum_otp_vsn, "17.0"}.

{deps, [
{escalus, "2\.6.\.*", {git, "git://github.com/esl/escalus.git", "29fcd0baed990d5e6b1fa2c3fd166f82d19dfe67"}},
{exml, "2\.1\..*", {git, "git://github.com/esl/exml.git", {tag, "2.1.5"}}}
{escalus, {git, "git://github.com/esl/escalus.git", {tag, "3.0.1"}}},
{exml, {git, "git://github.com/esl/exml.git", {tag, "2.4.1"}}}
]}.

36 changes: 36 additions & 0 deletions rebar.lock
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
[{<<"base16">>,
{git,"git://github.com/goj/base16.git",
{ref,"ec420aa4ce0fb971f155274c606e00188a2ed37d"}},
1},
{<<"escalus">>,
{git,"git://github.com/esl/escalus.git",
{ref,"a9d13d7cb62b9bf4daafe2ff5756ebb08eb9a6a6"}},
0},
{<<"exml">>,
{git,"git://github.com/esl/exml.git",
{ref,"06e743197a519e86e7faef6b938e09e80cddeaa3"}},
0},
{<<"fusco">>,
{git,"git://github.com/esl/fusco.git",
{ref,"0a428471aefb3a38207c2141249181e6c018e565"}},
1},
{<<"hamcrest">>,
{git,"https://github.com/basho/hamcrest-erlang.git",
{ref,"98bc7aa19ea081478c816824aa05fc5a48acae66"}},
2},
{<<"meck">>,
{git,"git://github.com/eproxus/meck.git",
{ref,"dde759050eff19a1a80fd854d7375174b191665d"}},
1},
{<<"mustache">>,
{git,"git://github.com/mojombo/mustache.erl.git",
{ref,"d0246fe143058b6404f66cf99fece3ff6e87b7ed"}},
1},
{<<"wsecli">>,
{git,"git://github.com/esl/wsecli.git",
{ref,"a89054cf71c5ee9e780998e5acb2a78fd3419dd9"}},
1},
{<<"wsock">>,
{git,"https://github.com/esl/wsock",
{ref,"251e18b80c018bb5a6e2f1bbd9bcfcc92e1d9383"}},
2}].