-
Notifications
You must be signed in to change notification settings - Fork 1
/
mix.exs
34 lines (27 loc) · 963 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 Exlibris.Mixfile do
use Mix.Project
@description """
A collection of random library functions I use across multiple projects:
pipe_while_ok: Create pipelines that terminate early if any step fails to return a tuple that starts {:ok, ...}
before_returning: Like Ruby's returning, it evaluates its first argument, then evalates the do block. It always returns the value of its first argument.
"""
@package [
files: [ "lib", "mix.exs", "README.md", "LICENSE.md" ],
contributors: [ "Dave Thomas <[email protected]>"],
licenses: [ "MIT. See LICENSE.md" ],
links: %{
"GitHub" => "https://github.com/pragdave/exlibris",
}
]
def project do
[
app: :exlibris,
version: "0.0.1",
elixir: ">= 1.0.0",
deps: [],
description: @description,
package: @package,
]
end
def application, do: []
end