From e669ead27cc660df4da4391cc936b49d186bba5d Mon Sep 17 00:00:00 2001 From: Rob Phoenix Date: Wed, 4 May 2016 15:03:14 +0100 Subject: [PATCH] include ex_doc in deps --- doc/IPA.html | 44 ++++++++++++++++++++++++++++++++++++++++++++ doc/IPError.html | 12 ++++++++++++ doc/SubnetError.html | 12 ++++++++++++ mix.exs | 7 ++++--- 4 files changed, 72 insertions(+), 3 deletions(-) diff --git a/doc/IPA.html b/doc/IPA.html index 2cedd4c..57c17fb 100644 --- a/doc/IPA.html +++ b/doc/IPA.html @@ -65,6 +65,10 @@

IPA + + + +

@@ -265,6 +269,10 @@

block(addr) + + + +
@@ -345,6 +353,10 @@

Examples

reserved?(addr) + + + +
@@ -373,6 +385,10 @@

Examples

to_binary(ip) + + + +
@@ -412,6 +428,10 @@

Example

to_bits(ip) + + + +
@@ -451,6 +471,10 @@

Example

to_cidr(mask) + + + +
@@ -479,6 +503,10 @@

Examples

to_dotted_dec(ip) + + + +
@@ -516,6 +544,10 @@

Example

to_hex(ip) + + + +
@@ -556,6 +588,10 @@

Example

to_octets(ip) + + + +
@@ -596,6 +632,10 @@

Example

valid_address?(addr) + + + +
@@ -641,6 +681,10 @@

Examples

valid_mask?(mask) + + + +
diff --git a/doc/IPError.html b/doc/IPError.html index 186c872..bdd1767 100644 --- a/doc/IPError.html +++ b/doc/IPError.html @@ -67,6 +67,10 @@

exception + + + +

@@ -132,6 +136,10 @@

exception(msg) + + + +

@@ -157,6 +165,10 @@

Specs

message(exception) + + + +
diff --git a/doc/SubnetError.html b/doc/SubnetError.html index 7fa4305..27f5fff 100644 --- a/doc/SubnetError.html +++ b/doc/SubnetError.html @@ -67,6 +67,10 @@

exception + + + +

@@ -132,6 +136,10 @@

exception(msg) + + + +

@@ -157,6 +165,10 @@

Specs

message(exception) + + + +
diff --git a/mix.exs b/mix.exs index 2643493..0ca081b 100644 --- a/mix.exs +++ b/mix.exs @@ -7,7 +7,7 @@ defmodule Ipa.Mixfile do elixir: "~> 1.1", build_embedded: Mix.env == :prod, start_permanent: Mix.env == :prod, - source_url: "https://github.com/bordeltabernacle/IPA" + source_url: "https://github.com/bordeltabernacle/IPA", description: description, package: package, deps: deps] @@ -30,7 +30,8 @@ defmodule Ipa.Mixfile do # # Type "mix help deps" for more examples and options defp deps do - [] + [{:earmark, "~> 0.1", only: :dev}, + {:ex_doc, "~> 0.11", only: :dev}] end defp description do @@ -42,7 +43,7 @@ defmodule Ipa.Mixfile do defp package do [name: :ipa, - files: ["lib", "priv", "mix.exs", "README.md", "LICENSE", "test"], + files: ["lib", "mix.exs", "README.md", "LICENSE", "test"], maintainers: ["Rob Phoenix"], licenses: ["MIT"], links: %{"GitHub" => "https://github.com/bordeltabernacle/IPA"}]