Packages
redix
0.3.4
1.6.0
1.5.3
1.5.2
1.5.1
1.5.0
1.4.2
1.4.1
1.4.0
1.3.0
1.2.4
1.2.3
1.2.2
1.2.1
1.2.0
1.1.5
1.1.4
1.1.3
1.1.2
1.1.1
retired
1.1.0
1.0.0
0.11.2
0.11.1
0.11.0
0.10.7
0.10.6
0.10.5
0.10.4
0.10.3
0.10.2
0.10.1
0.10.0
0.9.3
0.9.2
0.9.1
0.9.0
0.8.2
0.8.1
0.8.0
0.7.1
0.7.0
0.6.1
0.6.0
0.5.2
0.5.1
0.5.0
0.4.0
0.3.6
0.3.5
0.3.4
0.3.3
0.3.2
0.3.1
0.3.0
0.2.1
0.2.0
0.1.0
Fast, pipelined, resilient Redis driver for Elixir.
Current section
Files
Jump to
Current section
Files
mix.exs
defmodule Redix.Mixfile do
use Mix.Project
@description """
Superfast, pipelined, resilient Redis driver for Elixir.
"""
@repo_url "https://github.com/whatyouhide/redix"
@version "0.3.4"
def project do
[app: :redix,
version: @version,
elixir: "~> 1.0",
build_embedded: Mix.env in [:prod, :bench],
start_permanent: Mix.env == :prod,
test_coverage: [tool: Coverex.Task],
deps: deps,
# Hex
package: package,
description: @description,
# Docs
name: "Redix",
docs: [main: "Redix",
source_ref: "v#{@version}",
source_url: @repo_url,
extras: ["README.md"]]]
end
def application do
[applications: [:logger, :connection]]
end
defp package do
[maintainers: ["Andrea Leopardi"],
licenses: ["MIT"],
links: %{"GitHub" => @repo_url}]
end
defp deps do
[{:connection, "~> 1.0.0"},
{:dialyze, "~> 0.2", only: :dev},
{:benchfella, github: "alco/benchfella", only: :bench},
{:redo, github: "heroku/redo", only: :bench},
{:eredis, github: "wooga/eredis", only: :bench},
{:yar, github: "dantswain/yar", only: :bench},
{:coverex, "~> 1.4", only: :test},
{:ex_doc, ">= 0.0.0", only: :docs}]
end
end