summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRodrigo Coutinho <rodrigo.coutinho@locaweb.com.br>2016-10-06 16:15:18 -0300
committerRodrigo Coutinho <rodrigo.coutinho@locaweb.com.br>2016-10-06 16:15:18 -0300
commit0e11298372ccdc8dbaaf47516d4372d5a105886e (patch)
treeb0a261f0cf53e23b592f440183e731f275251251
parentMerge pull request #5 from digaoddc/master (diff)
Package information
-rw-r--r--LICENSE20
-rw-r--r--mix.exs15
2 files changed, 34 insertions, 1 deletions
diff --git a/LICENSE b/LICENSE
new file mode 100644
index 0000000..1d408ba
--- /dev/null
+++ b/LICENSE
@@ -0,0 +1,20 @@
+Copyright (c) 2013-2014 Rodrigo Coutinho
+
+Permission is hereby granted, free of charge, to any person obtaining
+a copy of this software and associated documentation files (the
+"Software"), to deal in the Software without restriction, including
+without limitation the rights to use, copy, modify, merge, publish,
+distribute, sublicense, and/or sell copies of the Software, and to
+permit persons to whom the Software is furnished to do so, subject to
+the following conditions:
+
+The above copyright notice and this permission notice shall be
+included in all copies or substantial portions of the Software.
+
+THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
+EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
+MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
+NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
+LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
+OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
+WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
diff --git a/mix.exs b/mix.exs
index b8ac847..0b05704 100644
--- a/mix.exs
+++ b/mix.exs
@@ -3,7 +3,7 @@ defmodule PowerDNSex.Mixfile do
def project do
[app: :powerdnsex,
- version: "0.1.0",
+ version: "0.0.1",
elixir: "~> 1.3",
build_embedded: Mix.env == :prod,
start_permanent: Mix.env == :prod,
@@ -19,4 +19,17 @@ defmodule PowerDNSex.Mixfile do
{:poison, "~> 2.2"},
{:exvcr, "~> 0.8.0", only: :test}]
end
+
+ defp description do
+ """
+ A Client to integrate with PowerDNS API version 4
+ """
+ end
+
+ defp package do
+ [ maintainers: ["Rodrigo Coutinho"],
+ licenses: ["MIT"],
+ links: %{"GitHub" => "https://github.com/digaoddc/power_dnsex"}
+ ]
+ end
end