Skip to content

Commit

Permalink
Prepare Hex release 0.4.0
Browse files Browse the repository at this point in the history
  • Loading branch information
yurrriq committed Apr 15, 2016
1 parent d0e9e69 commit 98fb090
Show file tree
Hide file tree
Showing 4 changed files with 17 additions and 36 deletions.
10 changes: 6 additions & 4 deletions README.org
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
#+STARTUP: showall
#+OPTIONS: ^:{} toc:nil

* levaindoc
Levaindoc is a lightweight LFE wrapper for [[http://pandoc.org][pandoc]],
based on its Elixir cousin, [[https://github.com/FilterKaapi/pandex][pandex]].
Expand All @@ -7,10 +10,9 @@ Levaindoc can perform [[http://pandoc.org/diagram.jpg][lots of conversions]].
** Installation
[[http://pandoc.org/installing.html][Install pandoc]] and add Levaindoc to =rebar.config=:
#+BEGIN_SRC erlang
{deps,
[{levaindoc,
{git, "git://github.com/quasiquoting/levaindoc.git",
{tag, "0.2.0"}}}]}.
{deps, [
levaindoc
]}.
#+END_SRC

** TODO Usage
Expand Down
22 changes: 5 additions & 17 deletions rebar.config
Original file line number Diff line number Diff line change
Expand Up @@ -5,19 +5,15 @@

{lfe_first_files, ["src/levaindoc-util.lfe"]}.

{deps, [
{lfe, {git, "git://github.com/rvirding/lfe.git", {branch, "develop"}}},
{clj, {git, "git://github.com/lfex/clj.git", {tag, "0.3.0"}}}
]}.
{deps, [lfe, clj]}.

{plugins, [
{'lfe-compile',
{git, "git://github.com/lfe-rebar3/compile.git", {tag, "0.3.0"}}}
]}.
{plugins, [rebar3_lfe_compile]}.

{provider_hooks, [{pre, [{compile, {lfe, compile}}]}]}.

{project_plugins, [lodox]}.
{project_plugins, [
{lodox, {git, "git://github.com/lfe-rebar3/lodox.git", {tag, "0.12.12"}}}
]}.

{lodox, [
{apps, [
Expand All @@ -28,11 +24,3 @@
]}
]}
]}.

{profiles, [
{test, [
{deps, [
{ltest, {git, "git://github.com/lfex/ltest.git", {tag, "0.8.0"}}}
]}
]}
]}.
15 changes: 3 additions & 12 deletions rebar.lock
Original file line number Diff line number Diff line change
@@ -1,12 +1,3 @@
[{<<"clj">>,
{git,"git://github.com/lfex/clj.git",
{ref,"2184d0f1459922145b432cfe19ac6147169383d7"}},
0},
{<<"kla">>,
{git,"git://github.com/lfex/kla.git",
{ref,"a8afc4f673809d89b6c4a374b972f54ef6b39bde"}},
1},
{<<"lfe">>,
{git,"git://github.com/rvirding/lfe.git",
{ref,"fab8b369444619d6eca802b1de387153420bef28"}},
0}].
[{<<"clj">>,{pkg,<<"clj">>,<<"0.5.0">>},0},
{<<"kla">>,{pkg,<<"kla">>,<<"0.7.0">>},1},
{<<"lfe">>,{pkg,<<"lfe">>,<<"1.0.2">>},0}].
6 changes: 3 additions & 3 deletions src/levaindoc.app.src
Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,13 @@

{application, levaindoc, [
{description, "Lightweight LFE wrapper for pandoc."},
{vsn, "0.3.3"},
{vsn, "0.4.0"},
{registered, []},
{applications, [kernel, stdlib]},
{env, []},
{modules, [levaindoc, 'levaindoc-util']},

{maintainers, ["Eric Bailey"]},
{maintainers, ["Eric Bailey"]},
{licenses, ["MIT"]},
{links, [{"GitHub", "https://github.com/lfe-rebar3/levaindoc"}]}
{links, [{"GitHub", "https://github.com/quasiquoting/levaindoc"}]}
]}.

0 comments on commit 98fb090

Please sign in to comment.