Packages
reverse_pipe
0.1.0
The pipe operator that positions the incoming argument at the end of the argument list.
Current section
Files
Jump to
Current section
Files
reverse_pipe
mix.exs
mix.exs
defmodule ReversePipe.MixProject do
use Mix.Project
defp description do
"""
The pipe operator that positions the incoming argument at the end of the argument list.
"""
end
defp package do
[
files: ["lib", "mix.exs", "README*", "LICENSE*"],
maintainers: ["Darren White"],
licenses: ["MIT"],
links: %{"GitHub" => "https://github.com/darrenwhite24/reverse_pipe"}
]
end
def project do
[
app: :reverse_pipe,
build_embedded: Mix.env == :prod,
deps: deps(),
description: description(),
elixir: "~> 1.7",
name: "Reverse Pipe",
package: package(),
source_url: "https://github.com/darrenwhite24/reverse_pipe",
start_permanent: Mix.env == :prod,
version: "0.1.0"
]
end
def application do
[extra_applications: [:logger]]
end
defp deps do
[{:ex_doc, "~> 0.19", only: :dev}]
end
end