From fcc44a2f4fc80afdea0c3c30825fe70666b7833f Mon Sep 17 00:00:00 2001 From: Tom Preston-Werner Date: Mon, 12 Nov 2007 20:59:11 -0800 Subject: [PATCH] add .app files --- ebin/.gitignore | 2 +- ebin/fuzed.app | 9 +++++++++ ebin/fuzed_node.app | 9 +++++++++ 3 files changed, 19 insertions(+), 1 deletion(-) create mode 100644 ebin/fuzed.app create mode 100644 ebin/fuzed_node.app diff --git a/ebin/.gitignore b/ebin/.gitignore index 72e8ffc..17278c0 100644 --- a/ebin/.gitignore +++ b/ebin/.gitignore @@ -1 +1 @@ -* +*.beam diff --git a/ebin/fuzed.app b/ebin/fuzed.app new file mode 100644 index 0000000..c9b6434 --- /dev/null +++ b/ebin/fuzed.app @@ -0,0 +1,9 @@ +{application, fuzed, + [{description, "Fuzed Master"}, + {vsn, "0.1.0"}, + {modules, [fuzed_app, fuzed_sup, rails_connection_pool, pool_sweeper]}, + {registered, [fuzed_app, fuzed_sup, rails_connection_pool, pool_sweeper]}, + {applications, [kernel, stdlib]}, + {mod, {fuzed_app, []}}, + {start_phases, []} + ]}. \ No newline at end of file diff --git a/ebin/fuzed_node.app b/ebin/fuzed_node.app new file mode 100644 index 0000000..4193805 --- /dev/null +++ b/ebin/fuzed_node.app @@ -0,0 +1,9 @@ +{application, fuzed_node, + [{description, "Fuzed Handler Node"}, + {vsn, "0.2.0"}, + {modules, [fuzed_node_app, fuzed_node_sup, resource_manager]}, + {registered, [fuzed_node_app, fuzed_node_sup, resource_manager]}, + {applications, [kernel, stdlib]}, + {mod, {fuzed_node_app, []}}, + {start_phases, []} + ]}. \ No newline at end of file -- 2.11.4.GIT