Current section
3 Versions
Jump to
Current section
3 Versions
Compare versions
2
files changed
+11
additions
-10
deletions
| @@ -1,19 +1,19 @@ | |
| 1 1 | {<<"app">>,<<"chroxy_client">>}. |
| 2 2 | {<<"build_tools">>,[<<"mix">>]}. |
| 3 | - {<<"description">>,<<"Client for Chroxy - Chrome Proxy Service">>}. |
| 3 | + {<<"description">>, |
| 4 | + <<"Client for Chrome Proxy Service which enables scalable remote debug protocol connections to managed Headless Chrome instances.">>}. |
| 4 5 | {<<"elixir">>,<<"~> 1.6">>}. |
| 5 6 | {<<"files">>, |
| 6 7 | [<<"config">>,<<"config/config.exs">>,<<"lib">>,<<"lib/chroxy_client">>, |
| 7 | - <<"lib/chroxy_client.ex">>,<<"lib/chroxy_client/application.ex">>, |
| 8 | + <<"lib/chroxy_client/application.ex">>,<<"lib/chroxy_client.ex">>, |
| 8 9 | <<"mix.exs">>,<<"README.md">>,<<"LICENSE">>]}. |
| 9 10 | {<<"licenses">>,[<<"MIT">>]}. |
| 10 11 | {<<"links">>,[{<<"GitHub">>,<<"https://github.com/holsee/chroxy_client">>}]}. |
| 11 | - {<<"maintainers">>,[<<"Steven Holdsworth (@holsee)">>]}. |
| 12 12 | {<<"name">>,<<"chroxy_client">>}. |
| 13 13 | {<<"requirements">>, |
| 14 14 | [[{<<"app">>,<<"chrome_remote_interface">>}, |
| 15 15 | {<<"name">>,<<"chrome_remote_interface">>}, |
| 16 16 | {<<"optional">>,false}, |
| 17 17 | {<<"repository">>,<<"hexpm">>}, |
| 18 | - {<<"requirement">>,<<"~> 0.1.0">>}]]}. |
| 19 | - {<<"version">>,<<"0.1.0">>}. |
| 18 | + {<<"requirement">>,<<"~> 0.2.0">>}]]}. |
| 19 | + {<<"version">>,<<"0.2.0">>}. |
| @@ -4,12 +4,13 @@ defmodule ChroxyClient.MixProject do | |
| 4 4 | def project do |
| 5 5 | [ |
| 6 6 | app: :chroxy_client, |
| 7 | - version: "0.1.0", |
| 7 | + version: "0.2.0", |
| 8 8 | elixir: "~> 1.6", |
| 9 9 | start_permanent: Mix.env() == :prod, |
| 10 10 | deps: deps(), |
| 11 11 | description: description(), |
| 12 | - package: package() |
| 12 | + package: package(), |
| 13 | + docs: [main: "ChroxyClient", logo: "logo.png", extras: ["README.md"]] |
| 13 14 | ] |
| 14 15 | end |
| 15 16 | |
| @@ -24,13 +25,13 @@ defmodule ChroxyClient.MixProject do | |
| 24 25 | # Run "mix help deps" to learn about dependencies. |
| 25 26 | defp deps do |
| 26 27 | [ |
| 27 | - {:chrome_remote_interface, "~> 0.1.0"}, |
| 28 | - {:ex_doc, "~> 0.16", only: :dev, runtime: false} |
| 28 | + {:chrome_remote_interface, "~> 0.2.0"}, |
| 29 | + {:ex_doc, "~> 0.20", only: :dev, runtime: false} |
| 29 30 | ] |
| 30 31 | end |
| 31 32 | |
| 32 33 | defp description() do |
| 33 | - "Client for Chroxy - Chrome Proxy Service" |
| 34 | + "Client for Chrome Proxy Service which enables scalable remote debug protocol connections to managed Headless Chrome instances." |
| 34 35 | end |
| 35 36 | |
| 36 37 | defp package() do |