Skip to content

Commit

Permalink
[#74] Removed master version for tirerl.
Browse files Browse the repository at this point in the history
  • Loading branch information
jfacorro committed Oct 16, 2014
1 parent 14b74d0 commit d5a6188
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
4 changes: 3 additions & 1 deletion examples/elastic-blog/run
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,6 @@ main(_) ->
_NumRows1 = blog:del_author(),
_NumRows2 = blog:del_post(),
_NumRows3 = blog:del_reader(),
_NumRows3 = blog:del_vote(),

%% Let's create a new blog author and a new blog entry. The result is the
%% same author and post with their new id's filled in.
Expand All @@ -28,6 +27,7 @@ main(_) ->
<<"It just make things easy">>,
Author),

io:format("Indexing...~n"),
timer:sleep(1000),

%% Let's now delete them.
Expand All @@ -41,6 +41,7 @@ main(_) ->
<<"It just make things easy">>,
Author2),

io:format("Indexing...~n"),
timer:sleep(1000),

%% Update author and post.
Expand All @@ -61,6 +62,7 @@ main(_) ->
Reader = blog:new_reader("Marcelo Gornstein", "[email protected]"),
Reader2 = blog:new_reader("Pepe Gorostiga", "[email protected]"),

io:format("Indexing...~n"),
timer:sleep(1000),

io:format("A Reader: ~p~n", [blog:find_reader(blog_reader:id(Reader))]),
Expand Down
4 changes: 2 additions & 2 deletions rebar.config
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
{lib_dirs,["deps", "examples"]}.
{erl_opts, [
{parse_transform, lager_transform},
{src_dirs, ["src"]},
{src_dirs, ["src", "examples/blog/src", "examples/elastic-blog/src"]},
warn_unused_vars,
warn_export_all,
warn_shadow_vars,
Expand All @@ -23,7 +23,7 @@
{emysql, "0.*", {git, "[email protected]:Eonblast/Emysql.git", "master"}},
{emongo, ".*", {git, "[email protected]:marcelog/emongo.git", "marcelog_login_for_2_2_and_higher"}},
{'sqlite3', ".*", {git, "[email protected]:alexeyr/erlang-sqlite3.git", "HEAD"}},
{'tirerl', ".*", {git, "[email protected]:inaka/tirerl", "master"}},
{'tirerl', ".*", {git, "[email protected]:inaka/tirerl", "0.1.0"}},
{worker_pool, ".*", {git, "[email protected]:inaka/worker_pool.git", "1.0"}}
]}.
{xref_warnings, true}.
Expand Down

0 comments on commit d5a6188

Please sign in to comment.