Skip to content

Commit

Permalink
Fixed transitive dependency issues in downstream projects.
Browse files Browse the repository at this point in the history
  • Loading branch information
artob committed Aug 6, 2016
1 parent 03060b4 commit 9d509eb
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ Add `exlua` to your list of dependencies in your project's `mix.exs` file:
```elixir
defp deps do
[{:exlua, "~> 0.2.0"},
{:luerl, github: "rvirding/luerl", tag: "v0.3",
{:luerl, github: "bendiken/luerl", branch: "exlua",
compile: "make && cp src/luerl.app.src ebin/luerl.app"}]
end
```
Expand All @@ -74,7 +74,7 @@ Alternatively, to pull in the dependency directly from a Git tag:
```elixir
defp deps do
[{:exlua, github: "bendiken/exlua", tag: "0.2.0"},
{:luerl, github: "rvirding/luerl", tag: "v0.3",
{:luerl, github: "bendiken/luerl", branch: "exlua",
compile: "make && cp src/luerl.app.src ebin/luerl.app"}]
end
```
Expand All @@ -84,7 +84,7 @@ Alternatively, to pull in the dependency directly from a Git branch:
```elixir
defp deps do
[{:exlua, github: "bendiken/exlua", branch: "master"},
{:luerl, github: "rvirding/luerl", tag: "v0.3",
{:luerl, github: "bendiken/luerl", branch: "exlua",
compile: "make && cp src/luerl.app.src ebin/luerl.app"}]
end
```
4 changes: 2 additions & 2 deletions mix.exs
Original file line number Diff line number Diff line change
Expand Up @@ -54,8 +54,8 @@ defmodule Lua.Mixfile do
{:earmark, ">= 0.0.0", only: :dev},
{:ex_doc, ">= 0.0.0", only: :dev},
{:excoveralls, ">= 0.0.0", only: :test},
{:luerl, github: "bendiken/luerl", branch: "develop",
compile: "make && cp src/luerl.app.src ebin/luerl.app"}]
{:luerl, github: "bendiken/luerl", branch: "exlua",
compile: "make && cp src/luerl.app.src ebin/luerl.app"}]
end

defp aliases do
Expand Down
2 changes: 1 addition & 1 deletion mix.lock
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
"hackney": {:hex, :hackney, "1.6.1", "ddd22d42db2b50e6a155439c8811b8f6df61a4395de10509714ad2751c6da817", [:rebar3], [{:certifi, "0.4.0", [hex: :certifi, optional: false]}, {:idna, "1.2.0", [hex: :idna, optional: false]}, {:metrics, "1.0.1", [hex: :metrics, optional: false]}, {:mimerl, "1.0.2", [hex: :mimerl, optional: false]}, {:ssl_verify_fun, "1.1.0", [hex: :ssl_verify_fun, optional: false]}]},
"idna": {:hex, :idna, "1.2.0", "ac62ee99da068f43c50dc69acf700e03a62a348360126260e87f2b54eced86b2", [:rebar3], []},
"jsx": {:hex, :jsx, "2.6.2", "213721e058da0587a4bce3cc8a00ff6684ced229c8f9223245c6ff2c88fbaa5a", [:mix, :rebar], []},
"luerl": {:git, "https://github.com/bendiken/luerl.git", "903d7f2037917dd58f13eeb86571eeeeda49d236", [branch: "develop"]},
"luerl": {:git, "https://github.com/bendiken/luerl.git", "903d7f2037917dd58f13eeb86571eeeeda49d236", [branch: "exlua"]},
"metrics": {:hex, :metrics, "1.0.1", "25f094dea2cda98213cecc3aeff09e940299d950904393b2a29d191c346a8486", [:rebar3], []},
"mimerl": {:hex, :mimerl, "1.0.2", "993f9b0e084083405ed8252b99460c4f0563e41729ab42d9074fd5e52439be88", [:rebar3], []},
"ssl_verify_fun": {:hex, :ssl_verify_fun, "1.1.0", "edee20847c42e379bf91261db474ffbe373f8acb56e9079acb6038d4e0bf414f", [:rebar, :make], []}}

0 comments on commit 9d509eb

Please sign in to comment.