-
Notifications
You must be signed in to change notification settings - Fork 38
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[#74] Removed master version for tirerl.
- Loading branch information
Showing
2 changed files
with
5 additions
and
3 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 |
---|---|---|
|
@@ -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. | ||
|
@@ -28,6 +27,7 @@ main(_) -> | |
<<"It just make things easy">>, | ||
Author), | ||
|
||
io:format("Indexing...~n"), | ||
timer:sleep(1000), | ||
|
||
%% Let's now delete them. | ||
|
@@ -41,6 +41,7 @@ main(_) -> | |
<<"It just make things easy">>, | ||
Author2), | ||
|
||
io:format("Indexing...~n"), | ||
timer:sleep(1000), | ||
|
||
%% Update author and post. | ||
|
@@ -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))]), | ||
|
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 |
---|---|---|
|
@@ -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, | ||
|
@@ -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}. | ||
|