Packages
absinthe_plug
1.1.2
1.5.10
1.5.9
1.5.8
1.5.7
1.5.6
1.5.5
1.5.4
1.5.3
1.5.2
1.5.1
1.5.0
1.5.0-rc.2
1.5.0-rc.1
1.5.0-rc.0
1.5.0-alpha.0
1.4.7
1.4.6
1.4.5
1.4.4
1.4.3
1.4.2
1.4.1
retired
1.4.0
1.4.0-rc.2
1.4.0-rc.1
1.4.0-rc.0
1.4.0-beta.2
1.4.0-beta.1
1.3.1
1.3.0
1.3.0-rc.1
1.3.0-rc.0
1.3.0-beta.1
1.3.0-beta.0
1.3.0-alpha.0
1.2.5
1.2.4
1.2.3
1.2.2
1.2.0
1.2.0-rc.0
1.2.0-alpha0
1.1.3
1.1.2
1.1.1
1.0.0
0.5.0
0.4.0
0.2.0
0.1.3
0.1.2
0.1.0
Plug support for Absinthe, the GraphQL toolkit for Elixir
Current section
Files
Jump to
Current section
Files
absinthe_plug
mix.exs
mix.exs
defmodule Absinthe.Plug.Mixfile do
use Mix.Project
@version "1.1.2"
def project do
[app: :absinthe_plug,
version: @version,
elixir: "~> 1.2",
build_embedded: Mix.env == :prod,
start_permanent: Mix.env == :prod,
elixirc_paths: elixirc_paths(Mix.env),
package: package,
docs: [source_ref: "v#{@version}", main: "Absinthe.Plug"],
deps: deps]
end
defp package do
[description: "A plug for Absinthe, an experimental GraphQL toolkit",
files: ["lib", "mix.exs", "README*"],
maintainers: ["Ben Wilson", "Bruce Williams"],
licenses: ["BSD"],
links: %{github: "https://github.com/CargoSense/absinthe_plug"}]
end
def application do
[applications: [:logger, :plug, :absinthe]]
end
# Specifies which paths to compile per environment.
defp elixirc_paths(:test), do: ["lib", "test/support"]
defp elixirc_paths(_), do: ["lib"]
defp deps do
[
{:plug, "~> 1.0"},
{:absinthe, "~> 1.1.3"},
{:poison, ">= 0.0.0", only: [:dev, :test]},
{:ex_doc, "~> 0.11.0", only: :dev},
{:earmark, "~> 0.1.19", only: :dev},
]
end
end