-
Notifications
You must be signed in to change notification settings - Fork 43
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Removed opts setting for runner and reset the way functions are calle…
…d (possibly a breaking change). Bumpted to 1.0.7
- Loading branch information
Showing
5 changed files
with
32 additions
and
31 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
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,7 +1,7 @@ | ||
defmodule Moebius.Mixfile do | ||
use Mix.Project | ||
|
||
@version "1.0.6" | ||
@version "1.0.7" | ||
|
||
def project do | ||
[app: :moebius, | ||
|
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 |
---|---|---|
|
@@ -45,7 +45,7 @@ insert into users(email, first, last) values('[email protected]','Mary','Muggtler'); | |
insert into users(email, first, last) values('[email protected]','Mike','Ghruoisl'); | ||
" | ||
|
||
case Moebius.Runner.run_with_psql sql, "meebuss" do | ||
case Moebius.Runner.run_with_psql sql do | ||
{_res, 0} -> true | ||
{:error, err} -> raise err | ||
end |