Packages

Ewebmachine contains macros and plugs to allow you to compose HTTP decision handlers and run the HTTP decision tree to get your HTTP response. This project is a rewrite for Elixir and Plug of basho webmachine.

Current section

Files

Jump to
Raw

mix.exs

defmodule Ewebmachine.Mixfile do
use Mix.Project
def project do
[ app: :ewebmachine,
version: "1.0.0",
deps: [{:webmachine, git: "git://github.com/basho/webmachine.git", tag: "1.10.6"}],
description: """
Ewebmachine is a very simple Elixir DSL around Webmachine
from basho :
https://github.com/basho/webmachine
You need to read webmachine wiki, then to read the README to
understand the simple wrapper rules.
""",
package: [links: %{"Source"=>"http://github.com/awetzel/ewebmachine"},
contributors: ["Arnaud Wetzel"],
licenses: ["MIT"]] ]
end
def application do
[ applications: [:webmachine],
env: [] ]
end
end