Current section
Files
Jump to
Current section
Files
mix.exs
# Generated by usvc-1.14.4
# Feel free to adjust, it will not be overridden
defmodule GrpcMock.Mixfile do
use Mix.Project
def project do
[app: :grpc_mock,
version: "0.2.1",
elixir: "~> 1.6",
build_embedded: Mix.env == :prod,
start_permanent: Mix.env == :prod,
elixirc_paths: elixirc_paths(Mix.env),
description: description(),
package: package(),
deps: deps()]
end
defp elixirc_paths(:test), do: ["lib", "test/support"]
defp elixirc_paths(_), do: ["lib"]
def application do
# Specify extra applications you'll use from Erlang/Elixir
[extra_applications: [:logger],
mod: {GrpcMock.Application, []}]
end
defp deps do
[
{:credo, "~> 0.8", only: [:dev, :test], runtime: false},
{:grpc, "~> 0.3"},
{:ex_doc, "~> 0.18.0", only: :dev}
]
end
defp description do
"""
GrpcMock is mocking library for [Elixir gRPC implementation](https://github.com/tony612/grpc-elixir).
It provides seamless mock creation based on `pb.ex` definition and
usual mocking "expect" - "verify" mechanisms.
"""
end
defp package do
[
maintainers: ["Predrag Rakic"],
licenses: ["Apache License, Version 2.0"],
links: %{"GitHub" => "https://github.com/renderedtext/grpc-mock"}
]
end
end