-
Notifications
You must be signed in to change notification settings - Fork 3
/
mix.exs
43 lines (35 loc) · 800 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
35
36
37
38
39
40
41
42
43
defmodule Ecto.Hstore.Mixfile do
use Mix.Project
@version "0.0.1"
def project do
[app: :ecto_hstore,
version: @version,
elixir: "~> 1.0",
deps: deps,
test_paths: ["test"],
# Hex
description: description,
package: package,
# Docs
name: "Ecto.Hstore",
docs: [source_ref: "v#{@version}",
source_url: "https://github.com/stavro/ecto_hstore"]
]
end
defp description do
"""
Ecto.Hstore adds Postgres Hstore compatibility to Ecto.
"""
end
defp package do
[contributors: ["Sean Stavropoulos"],
licenses: ["Apache 2.0"],
links: %{"GitHub" => "https://github.com/stavro/ecto_hstore"}]
end
def application do
[applications: []]
end
defp deps do
[{:ecto, ">= 0.5.0"}]
end
end