Current section
5 Versions
Jump to
Current section
5 Versions
Compare versions
2
files changed
+11
additions
-16
deletions
| @@ -5,7 +5,7 @@ | |
| 5 5 | {<<"elixir">>,<<"~> 1.3">>}. |
| 6 6 | {<<"files">>, |
| 7 7 | [<<"lib/elistix.ex">>,<<"lib/elistix/index.ex">>,<<"lib/elistix/query.ex">>, |
| 8 | - <<"lib/elistix/response.ex">>,<<"mix.exs">>,<<"README.md">>,<<"LICENSE">>]}. |
| 8 | + <<"lib/elistix/response.ex">>,<<"README.md">>,<<"LICENSE">>,<<"mix.exs">>]}. |
| 9 9 | {<<"licenses">>,[<<"GPL 3.0">>]}. |
| 10 10 | {<<"links">>,[{<<"GitHub">>,<<"https://github.com/lcostantini/elistix">>}]}. |
| 11 11 | {<<"maintainers">>,[<<"Leandro Costantini">>]}. |
| @@ -14,9 +14,5 @@ | |
| 14 14 | [[{<<"app">>,<<"httpoison">>}, |
| 15 15 | {<<"name">>,<<"httpoison">>}, |
| 16 16 | {<<"optional">>,false}, |
| 17 | - {<<"requirement">>,<<"~> 0.10.0">>}], |
| 18 | - [{<<"app">>,<<"poison">>}, |
| 19 | - {<<"name">>,<<"poison">>}, |
| 20 | - {<<"optional">>,false}, |
| 21 | - {<<"requirement">>,<<"~> 2.0">>}]]}. |
| 22 | - {<<"version">>,<<"1.0.0">>}. |
| 17 | + {<<"requirement">>,<<"~> 0.11">>}]]}. |
| 18 | + {<<"version">>,<<"1.0.1">>}. |
| @@ -3,13 +3,13 @@ defmodule Elistix.Mixfile do | |
| 3 3 | |
| 4 4 | def project do |
| 5 5 | [app: :elistix, |
| 6 | - version: "1.0.0", |
| 6 | + version: "1.0.1", |
| 7 7 | elixir: "~> 1.3", |
| 8 | - build_embedded: Mix.env == :prod, |
| 9 | - start_permanent: Mix.env == :prod, |
| 10 | - description: description, |
| 11 | - package: package, |
| 12 | - deps: deps()] |
| 8 | + name: "Elistix", |
| 9 | + description: description(), |
| 10 | + package: package(), |
| 11 | + deps: deps(), |
| 12 | + source_url: "https://github.com/lcostantini/elistix"] |
| 13 13 | end |
| 14 14 | |
| 15 15 | def application do |
| @@ -24,7 +24,7 @@ defmodule Elistix.Mixfile do | |
| 24 24 | |
| 25 25 | defp package do |
| 26 26 | [ |
| 27 | - name: :elistix, |
| 27 | + files: ["lib", "README.md", "LICENSE", "mix.exs"], |
| 28 28 | maintainers: ["Leandro Costantini"], |
| 29 29 | licenses: ["GPL 3.0"], |
| 30 30 | links: %{"GitHub" => "https://github.com/lcostantini/elistix"} |
| @@ -32,8 +32,7 @@ defmodule Elistix.Mixfile do | |
| 32 32 | end |
| 33 33 | |
| 34 34 | defp deps do |
| 35 | - [{:httpoison, "~> 0.10.0"}, |
| 36 | - {:poison, "~> 2.0"}, |
| 35 | + [{:httpoison, "~> 0.11"}, |
| 37 36 | {:inch_ex, "~> 0.5", only: [:dev, :test]}, |
| 38 37 | {:ex_doc, "~> 0.14", only: :dev}] |
| 39 38 | end |