add .app files
authorTom Preston-Werner <[email protected]>
Tue, 13 Nov 2007 04:59:11 +0000 (12 20:59 -0800)
committerTom Preston-Werner <[email protected]>
Tue, 13 Nov 2007 04:59:11 +0000 (12 20:59 -0800)
ebin/.gitignore
ebin/fuzed.app [new file with mode: 0644]
ebin/fuzed_node.app [new file with mode: 0644]

index 72e8ffc..17278c0 100644 (file)
@@ -1 +1 @@
-*
+*.beam
diff --git a/ebin/fuzed.app b/ebin/fuzed.app
new file mode 100644 (file)
index 0000000..c9b6434
--- /dev/null
@@ -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 (file)
index 0000000..4193805
--- /dev/null
@@ -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