-
Notifications
You must be signed in to change notification settings - Fork 79
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
6a7eec9
commit 19eec4c
Showing
11 changed files
with
31 additions
and
134 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,5 @@ | ||
.rebar | ||
_build | ||
.eunit | ||
deps | ||
priv | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,3 @@ | ||
|
||
{erl_opts, [debug_info]}. | ||
|
||
{deps_dir, ["deps"]}. | ||
|
||
{deps, [ | ||
{hackney, "0.13.1", {git, "https://github.com/benoitc/hackney.git", {tag, "0.13.1"}}} | ||
,{jsx, "1.4.5", {git, "https://github.com/talentdeficit/jsx.git", {tag, "v1.4.5"}}} | ||
]}. | ||
{deps, [hackney, jsx]}. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
[{<<"idna">>,{pkg,<<"idna">>,<<"1.0.2">>},1}, | ||
{<<"ssl_verify_hostname">>,{pkg,<<"ssl_verify_hostname">>,<<"1.0.5">>},1}, | ||
{<<"jsx">>,{pkg,<<"jsx">>,<<"2.6.2">>},0}, | ||
{<<"hackney">>,{pkg,<<"hackney">>,<<"1.1.0">>},0}]. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,18 @@ | ||
%% This is the application resource file (.app file) for the erlastic_search, | ||
%% application. | ||
{application, erlastic_search, | ||
{application, erlastic_search, | ||
[{description, "An Erlang app for communicating with Elastic Search's rest interface."}, | ||
{vsn, "0.3.1"}, | ||
{vsn, "1.0.0"}, | ||
{modules, []}, | ||
{registered,[]}, | ||
{applications, [kernel | ||
,stdlib | ||
,stdlib | ||
,ssl | ||
,hackney | ||
,jsx]}, | ||
{start_phases, []}]}. | ||
{start_phases, []}, | ||
|
||
{contributors, ["Tristan Sloughter"]}, | ||
{licenses, ["LGPL"]}, | ||
{links, [{"Github", "https://github.com/tsloughter/erlastic_search"}]} | ||
]}. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters