Packages
This is a one-method utility library for Elixir projects that needs to strips indentation in heredocs.
Current section
Files
Jump to
Current section
Files
strip_heredoc
mix.exs
mix.exs
defmodule StripHeredoc.Mixfile do
use Mix.Project
def project do
[app: :strip_heredoc,
version: "0.7.0",
elixir: "~> 1.4",
build_embedded: Mix.env == :prod,
start_permanent: Mix.env == :prod,
deps: deps(),
description: description(),
package: package()]
end
def application, do: []
defp deps do
[
{:mix_test_watch, "~> 0.3", only: :dev, runtime: false},
{:ex_unit_notifier, "~> 0.1", only: :test},
{:credo, "~> 0.5", only: [:dev, :test]},
{:inch_ex, only: :docs},
{:ex_doc, ">= 0.0.0", only: :dev}
]
end
defp description do
"""
StripHeredoc is very small library for Elixir projects that needs to strips indentation in heredocs.
"""
end
defp package do
[
files: ["lib", "mix.exs", "README.md"],
maintainers: ["Wilfrido T. Nuqui Jr."],
licenses: ["MIT"],
links: %{
"GitHub" => "https://github.com/wnuqui/strip_heredoc",
"Docs" => "http://hexdocs.pm/strip_heredoc"
}
]
end
end