forked from cconstantin/plug_rails_cookie_session_store
-
Notifications
You must be signed in to change notification settings - Fork 0
/
mix.exs
34 lines (29 loc) · 780 Bytes
/
mix.exs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
defmodule PlugRailsCookieSessionStore.Mixfile do
use Mix.Project
def project do
[app: :plug_rails_cookie_session_store,
version: "0.2.0",
elixir: "~> 1.0",
description: description(),
package: package(),
deps: deps()]
end
def application do
[applications: [:crypto, :logger]]
end
defp description do
"Rails compatible Plug session store"
end
defp package do
[
name: :plug_rails_cookie_session_store,
files: ["lib", "mix.exs", "README*", "LICENSE*"],
maintainers: ["Chris Constantin"],
licenses: ["MIT"],
links: %{"Github" => "https://github.com/cconstantin/plug_rails_cookie_session_store"}]
end
defp deps do
[{:plug, ">= 1.7.0"},
{:ex_doc, ">= 0.0.0", only: :dev}]
end
end