Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

edit for publish to hex.pm #1

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
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
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -6,3 +6,6 @@
.DS_Store
/TEST-*.xml
/deps
_build
.idea
*.iml
Binary file removed rebar
Binary file not shown.
11 changes: 8 additions & 3 deletions rebar.config
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
{deps, [{statebox, ".*",
{git, "https://github.com/mochi/statebox.git", ""}}]}.
{profiles, [
{test, [{deps, [
{statebox, {git, "https://github.com/mochi/statebox.git", {branch, "master"}}}
]}]}
]}.

{deps, []}.
{cover_enabled, true}.
{clean_files, ["*.eunit", "ebin/*.beam"]}.

{eunit_opts, [verbose, {report,{eunit_surefire,[{dir,"."}]}}]}.
1 change: 1 addition & 0 deletions rebar.lock
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
[].
22 changes: 11 additions & 11 deletions src/recordset.app.src
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
{application, recordset,
[
{description, "A fixed-size ordered set of complex terms."},
{vsn, "0.1.0"},
{registered, []},
{applications, [
kernel,
stdlib
]},
{env, []}
]}.
{application, recordset, [
{description, "A fixed-size ordered set of complex terms."},
{vsn, "0.1.0"},
{registered, []},
{applications, [kernel, stdlib]},
{env, []},
{modules, []},
{maintainers, ["mochi"]},
{licenses, ["MIT"]},
{links, [{"Github", "https://github.com/mochi/recordset"}]}
]}.