-
Notifications
You must be signed in to change notification settings - Fork 8
/
mix.exs
38 lines (34 loc) · 914 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
defmodule TucoTuco.Mixfile do
use Mix.Project
def project do
[ app: :tuco_tuco,
version: "0.8.1",
elixir: "~> 1.1.1",
description: "Testing tool for web applications",
source_url: "https://github.com/stuart/tuco_tuco",
homepage_url: "http://stuart.github.io/tuco_tuco",
package: package,
deps: deps,
docs: [
readme: true
]
]
end
# Configuration for the OTP application
def application do
[ mod: { TucoTuco, [] },
applications: [ :webdriver ]
]
end
defp deps do
[ {:webdriver, "~>0.8.1"},
{:ibrowse, github: "cmullaparthi/ibrowse", tag: "v4.1.2"},
{:earmark, "~>0.1.10", only: :dev},
{:ex_doc, "~>0.6", only: :dev}]
end
defp package do
[maintainers: ["Stuart Coyle"],
licenses: ["MIT License"],
links: %{"Github" => "https://github.com/stuart/tuco-tuco"}]
end
end