Skip to content

Commit 9413737

Browse files
committed
publish on hex 1.0.0
1 parent 79fe8d8 commit 9413737

2 files changed

Lines changed: 18 additions & 8 deletions

File tree

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
[![Build Status](https://travis-ci.org/zhongwencool/maxwell.svg?branch=master)](https://travis-ci.org/zhongwencool/maxwell)
44
[![Coveralls Coverage](https://img.shields.io/coveralls/zhongwencool/maxwell.svg)](https://coveralls.io/github/zhongwencool/maxwell)
55

6-
Mawell is an HTTP client that provides a common interface over many adapters (such as hackney, ibrowse) and embraces the concept of Rack middleware when processing the request/response cycle.
6+
Maxwell is an HTTP client that provides a common interface over many adapters (such as hackney, ibrowse) and embraces the concept of Rack middleware when processing the request/response cycle.
77

88
It borrow idea from [tesla(elixir)](https://github.com/teamon/tesla) which losely base on [Faraday(ruby)](https://github.com/lostisland/faraday)
99

mix.exs

Lines changed: 17 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -3,27 +3,37 @@ defmodule Maxwell.Mixfile do
33

44
def project do
55
[app: :maxwell,
6-
version: "0.0.1",
6+
version: "1.0.0",
77
elixir: "~> 1.2",
88
build_embedded: Mix.env == :prod,
99
start_permanent: Mix.env == :prod,
10+
package: [
11+
maintainers: ["zhongwencool"],
12+
links: %{"GitHub" => "https://github.com/zhongwencool/maxwell"},
13+
files: ~w(lib LICENSE mix.exs README.md),
14+
description: """
15+
Maxwell is an HTTP client that provides a common interface over many adapters (such as hackney, ibrowse) and embraces the concept of Rack middleware when processing the request/response cycle.
16+
""",
17+
licenses: ["MIT"]
18+
],
1019
test_coverage: [tool: ExCoveralls],
1120
deps: deps]
1221
end
1322

1423
# Type "mix help compile.app" for more information
1524
def application do
16-
[applications: [:logger, :poison,]]
25+
[applications: [:logger]]
1726
end
1827

1928
defp deps do
2029
[
21-
{:mimerl, "~> 1.0.2"}, # for find multipart ctype
22-
{:ibrowse, "~> 4.2", optional: true, only: :test},
23-
{:poison, "~> 2.1", optional: true, only: :test},
24-
{:hackney, "~> 1.6", optional: true, only: :test},
25-
{:excoveralls, "~> 0.5.1", only: :test},
30+
{:mimerl, "~> 1.0.2"}, # for find multipart ctype
31+
{:poison, "~> 2.1", only: :test, optional: true},
32+
{:ibrowse, "~> 4.2", only: :test, optional: true},
33+
{:hackney, "~> 1.6", only: :test, optional: true},
34+
{:excoveralls, "~> 0.5.1", only: :test},
2635
]
2736
end
2837

2938
end
39+

0 commit comments

Comments
 (0)