diff --git a/mix.exs b/mix.exs index c965f28..27b4c1d 100644 --- a/mix.exs +++ b/mix.exs @@ -2,8 +2,8 @@ defmodule ElixirNsq.Mixfile do use Mix.Project def project do - [app: :elixir_nsq, - version: "1.0.3", + [app: :ex_nsq, + version: "1.1.0", elixir: "~> 1.1", description: description(), package: package(), @@ -35,29 +35,35 @@ defmodule ElixirNsq.Mixfile do {:httpotion, "~> 2.1.0"}, {:uuid, "~> 1.1.2"}, {:socket, "~> 0.3.1"}, + {:ex_doc, ">= 0.0.0", only: :dev}, + # testing {:secure_random, "~> 0.2", only: :test}, # Small HTTP server for running tests - {:http_server, github: "parroty/http_server"}, + {:http_server, github: "parroty/http_server", only: :test}, ] end defp description do """ - A client library for NSQ, `elixir_nsq` aims to be complete, easy to use, - and well tested. Developed at Wistia (http://wistia.com). + A client library for NSQ, `ex_nsq` aims to be complete, easy to use, + and well tested. + + Originally developed at Wistia (http://wistia.com) as `elixir_nsq`, + `ex_nsq` was forked to make a version with merged PRs and updated + dependencies available on Hex.pm for other projects to depend upon. """ end defp package do [ - files: ["lib", "mix.exs", "README*", "readme*", "LICENSE*", "license*"], - maintainers: ["Max Schnur (max@wistia.com)"], + files: ["lib", "mix.exs", "README*", "LICENSE*"], + maintainers: ["Mike Clarke"], licenses: ["MIT"], links: %{ - "GitHub" => "https://github.com/wistia/elixir_nsq" + "GitHub" => "https://github.com/lambdafn/ex_nsq" }, ] end diff --git a/mix.lock b/mix.lock index 40ae8bf..0d95f43 100644 --- a/mix.lock +++ b/mix.lock @@ -1,6 +1,8 @@ %{"connection": {:hex, :connection, "1.0.1"}, "cowboy": {:hex, :cowboy, "1.0.4", "a324a8df9f2316c833a470d918aaf73ae894278b8aa6226ce7a9bf699388f878", [:make, :rebar], [{:cowlib, "~> 1.0.0", [hex: :cowlib, optional: false]}, {:ranch, "~> 1.0", [hex: :ranch, optional: false]}]}, "cowlib": {:hex, :cowlib, "1.0.2", "9d769a1d062c9c3ac753096f868ca121e2730b9a377de23dec0f7e08b1df84ee", [:make], []}, + "earmark": {:hex, :earmark, "1.2.3", "206eb2e2ac1a794aa5256f3982de7a76bf4579ff91cb28d0e17ea2c9491e46a4", [:mix], []}, + "ex_doc": {:hex, :ex_doc, "0.16.2", "3b3e210ebcd85a7c76b4e73f85c5640c011d2a0b2f06dcdf5acdb2ae904e5084", [:mix], [{:earmark, "~> 1.1", [hex: :earmark, optional: false]}]}, "http_server": {:git, "https://github.com/parroty/http_server.git", "922d10420836a51289ed04f0bb5022bf695da1ab", []}, "httpotion": {:hex, :httpotion, "2.1.0", "3fe84fbd13d4560c2514da656d022b1191a079178ee4992d245fc3c33c01ee18", [:mix], []}, "ibrowse": {:hex, :ibrowse, "4.4.0", "2d923325efe0d2cb09b9c6a047b2835a5eda69d8a47ed6ff8bc03628b764e991", [:rebar3], []},