summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorkballou <kballou@devnulllabs.io>2014-10-16 19:22:01 -0600
committerkballou <kballou@devnulllabs.io>2014-10-16 19:22:01 -0600
commit226970e89bb4b8b32c2c08c2ef2999a3e8e4abbd (patch)
tree1465a2295e77bbe34dc1412415b645a33d34b119
downloadpoolparty-226970e89bb4b8b32c2c08c2ef2999a3e8e4abbd.tar.gz
poolparty-226970e89bb4b8b32c2c08c2ef2999a3e8e4abbd.tar.xz
PoolParty: A work pool scheduler
-rw-r--r--.gitignore4
-rw-r--r--README.markdown3
-rw-r--r--config/config.exs3
-rw-r--r--lib/poolparty.ex2
-rw-r--r--mix.exs18
-rw-r--r--test/poolparty_test.exs3
-rw-r--r--test/test_helper.exs1
7 files changed, 34 insertions, 0 deletions
diff --git a/.gitignore b/.gitignore
new file mode 100644
index 0000000..9607671
--- /dev/null
+++ b/.gitignore
@@ -0,0 +1,4 @@
+/_build
+/deps
+erl_crash.dump
+*.ez
diff --git a/README.markdown b/README.markdown
new file mode 100644
index 0000000..d43360c
--- /dev/null
+++ b/README.markdown
@@ -0,0 +1,3 @@
+# Poolparty #
+
+Toy Elixir work pool.
diff --git a/config/config.exs b/config/config.exs
new file mode 100644
index 0000000..0d0917d
--- /dev/null
+++ b/config/config.exs
@@ -0,0 +1,3 @@
+# This file is responsible for configuring your application
+# and its dependencies with the aid of the Mix.Config module.
+use Mix.Config
diff --git a/lib/poolparty.ex b/lib/poolparty.ex
new file mode 100644
index 0000000..2316c21
--- /dev/null
+++ b/lib/poolparty.ex
@@ -0,0 +1,2 @@
+defmodule Poolparty do
+end
diff --git a/mix.exs b/mix.exs
new file mode 100644
index 0000000..0e806e6
--- /dev/null
+++ b/mix.exs
@@ -0,0 +1,18 @@
+defmodule Poolparty.Mixfile do
+ use Mix.Project
+
+ def project do
+ [app: :poolparty,
+ version: "0.0.1",
+ elixir: "~> 1.0",
+ deps: deps]
+ end
+
+ def application do
+ [applications: [:logger]]
+ end
+
+ defp deps do
+ []
+ end
+end
diff --git a/test/poolparty_test.exs b/test/poolparty_test.exs
new file mode 100644
index 0000000..761c433
--- /dev/null
+++ b/test/poolparty_test.exs
@@ -0,0 +1,3 @@
+defmodule PoolpartyTest do
+ use ExUnit.Case
+end
diff --git a/test/test_helper.exs b/test/test_helper.exs
new file mode 100644
index 0000000..869559e
--- /dev/null
+++ b/test/test_helper.exs
@@ -0,0 +1 @@
+ExUnit.start()