Packages
truth_table
0.1.0
Generate truth tables in Elixir
Retired package: Deprecated - abandoned & not particularly helpful
Current section
Files
Jump to
Current section
Files
truth_table
mix.exs
mix.exs
defmodule TruthTable.MixProject do
use Mix.Project
def project do
[
app: :truth_table,
name: "TruthTable",
version: "0.1.0",
elixir: "~> 1.8",
description: "Generate truth tables in Elixir",
source_url: "https://github.com/brettbeatty/truth_table",
package: [
licenses: ["MIT"],
links: %{"GitHub" => "https://github.com/brettbeatty/truth_table"}
],
start_permanent: Mix.env() == :prod,
deps: [
{:credo, "~> 1.0.0", only: [:dev, :test], runtime: false},
{:ex_doc, "~> 0.19", only: :dev}
]
]
end
def application do
[
extra_applications: [:logger]
]
end
end