Packages
Construct streams of values by specifying composable generator functions. For example list(tuple(like: {atom, string})) will generate a random length keyword list with random keys and values. Constraints can be applied at all levels.
Current section
Files
Jump to
Current section
Files
mix.exs
defmodule Pollution.Mixfile do
use Mix.Project
@version "0.9.0"
@package [
licenses: ["mit"],
maintainers: ["Dave Thomas (pragdave) <dave@pragdave.me>"],
links: %{
"Github" => "https://github.com/pragdave/pollution",
},
]
@deps [
{:ex_doc, ">= 0.0.0", only: :dev }
]
@docs [
extras: [ "README.md" ],
main: "Pollution"
]
@project [
app: :pollution,
version: @version,
elixir: "~> 1.3",
build_embedded: Mix.env == :prod,
start_permanent: Mix.env == :prod,
deps: @deps,
description: """
Construct streams of values by specifying composable generator functions.
For example list(tuple(like: {atom, string})) will generate a random length
keyword list with random keys and values. Constraints can be applied at
all levels.
""",
package: @package,
docs: @docs
]
@application []
############################################################
def project, do: @project
def application, do: @application
end