You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@couchdb.apache.org by va...@apache.org on 2017/09/28 21:02:45 UTC

[37/50] meck commit: updated refs/heads/master to 3544aca

Update Hex package information for Rebar 3


Project: http://git-wip-us.apache.org/repos/asf/couchdb-meck/repo
Commit: http://git-wip-us.apache.org/repos/asf/couchdb-meck/commit/13f0a6fb
Tree: http://git-wip-us.apache.org/repos/asf/couchdb-meck/tree/13f0a6fb
Diff: http://git-wip-us.apache.org/repos/asf/couchdb-meck/diff/13f0a6fb

Branch: refs/heads/master
Commit: 13f0a6fb5d65c6410f1db69fe28d1fe56978a89f
Parents: 28df819
Author: Adam Lindberg <he...@alind.io>
Authored: Thu Jun 29 14:47:18 2017 +0200
Committer: Adam Lindberg <he...@alind.io>
Committed: Thu Jun 29 14:47:18 2017 +0200

----------------------------------------------------------------------
 package.exs      | 45 ---------------------------------------------
 src/meck.app.src | 21 +++++++++++++--------
 2 files changed, 13 insertions(+), 53 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/couchdb-meck/blob/13f0a6fb/package.exs
----------------------------------------------------------------------
diff --git a/package.exs b/package.exs
deleted file mode 100644
index 83711c3..0000000
--- a/package.exs
+++ /dev/null
@@ -1,45 +0,0 @@
-defmodule Meck.Mixfile do
-  use Mix.Project
-
-  def project do
-    [
-      app: :meck,
-      version: "0.8.6",
-      description: description,
-      package: package,
-      deps: [],
-    ]
-  end
-
-  defp description do
-    """
-    A mocking framework for Erlang
-    """
-  end
-
-  defp package do
-    [
-      files: [
-        "Makefile",
-        "rebar.config",
-        "test.config",
-        "src",
-        "test/*.erl",
-        "test/cover_test_module.dontcompile",
-        "test/include",
-        "README.md",
-        "LICENSE",
-        "CHANGELOG",
-      ],
-      maintainers: [
-        "Adam Lindberg",
-      ],
-      licenses: [
-        "Apache 2.0",
-      ],
-      links: %{
-        "GitHub" => "https://github.com/eproxus/meck",
-      },
-    ]
-  end
-end

http://git-wip-us.apache.org/repos/asf/couchdb-meck/blob/13f0a6fb/src/meck.app.src
----------------------------------------------------------------------
diff --git a/src/meck.app.src b/src/meck.app.src
index 38647c2..5794610 100644
--- a/src/meck.app.src
+++ b/src/meck.app.src
@@ -1,8 +1,13 @@
-%% -*- mode: erlang; -*-
-{application, meck,
- [{description, "A mocking framework for Erlang"},
-  {vsn, "0.8.6"},
-  {modules, []},
-  {registered, []},
-  {applications, [kernel, stdlib, tools]},
-  {env, []}]}.
+{application, meck, [
+    {description, "A mocking framework for Erlang"},
+    {vsn, "0.8.6"},
+    {modules, []},
+    {registered, []},
+    {applications, [kernel, stdlib, tools]},
+    {env, []},
+
+    % Hex.pm
+    {maintainers, ["Adam Lindberg"]},
+    {licenses, ["Apache 2.0"]},
+    {links, [{"GitHub", "https://github.com/eproxus/meck"}]}
+]}.