elixir-thrift/mix.exs
Jon Parise 8b050d8dd6 Update some ProtocolHandler @spec's (#213)
start_link/5's @spec wasn't updated when it signature was last changed.
Also add a @spec to init/6 and mark some internal functions as private.

We only support :ranch_tcp at the moment, so that's explicitly enforced
in both the typespecs as well as the init/6 function head.
2017-02-07 12:11:03 -08:00

87 lines
2.2 KiB
Elixir

defmodule Thrift.Mixfile do
@moduledoc false
use Mix.Project
@description """
Elixir implementation of the Thrift service framework
This package includes support for parsing Thrift IDL files, working with the
Thrift binary protocol, and building high-performance clients and servers.
"""
@version "2.0.0-dev"
@project_url "https://github.com/pinterest/elixir-thrift"
def project do
[app: :thrift,
version: @version,
elixir: "~> 1.3",
deps: deps(),
# Build Environment
erlc_paths: erlc_paths(Mix.env),
elixirc_paths: elixirc_paths(Mix.env),
compilers: [:leex, :yecc, :erlang, :elixir, :app],
# Testing
test_coverage: [tool: ExCoveralls],
preferred_cli_env: [
"bench": :test,
"coveralls": :test,
"coveralls.detail": :test,
"coveralls.html": :test,
"coveralls.post": :test],
# URLs
source_url: @project_url,
homepage_url: @project_url,
# Hex
description: @description,
package: package(),
# Dialyzer
dialyzer: [plt_add_deps: :transitive, plt_add_apps: [:ex_unit, :mix, :public_key, :ssl]],
# Docs
name: "Thrift",
docs: [
main: "README",
extras: ["README.md": [group: "Documents", title: "README"]],
source_ref: "thrift_tng",
source_url: @project_url]]
end
def application do
[
applications: [:logger, :connection, :ranch],
]
end
defp erlc_paths(:test), do: ["src", "test/support/src"]
defp erlc_paths(_), do: ["src"]
defp elixirc_paths(:test), do: ["lib", "test/support/lib"]
defp elixirc_paths(_), do: ["lib"]
defp deps do
[{:ex_doc, "~> 0.14", only: :dev},
{:excoveralls, "~> 0.6", only: [:dev, :test]},
{:credo, "~> 0.6", only: [:dev, :test]},
{:dialyxir, "~> 0.4", only: :dev, runtime: false},
{:benchfella, "~> 0.3", only: [:dev, :test]},
{:connection, "~> 1.0"},
{:ranch, "~> 1.2"},
]
end
defp package do
[maintainers: ["Jon Parise", "Steve Cohen", "Preston Guillory"],
licenses: ["Apache 2.0"],
links: %{"GitHub" => @project_url},
files: ~w(README.md LICENSE mix.exs lib) ++
~w(src/thrift_lexer.xrl src/thrift_parser.yrl)
]
end
end