Packages

Remodel is an Elixir presenter package used to transform data structures. This is especially useful when a desired representation doesn't match the schema defined within the database.

Current section

Files

Jump to
remodel mix.exs
Raw

mix.exs

defmodule Remodel.Mixfile do
use Mix.Project
@version "0.0.2"
def project do
[
app: :remodel,
version: @version,
elixir: "~> 1.0",
deps: deps,
# Hex
description: description,
package: package
]
end
def application do
[applications: [:logger]]
end
defp description do
"""
Remodel is an Elixir presenter package used to transform data structures.
This is especially useful when a desired representation doesn't match the schema defined within the database.
"""
end
defp deps do
[]
end
defp package do
[
licenses: ["Apache 2.0"],
links: %{"GitHub": "https://github.com/stavro/remodel"},
contributors: ["Sean Stavropoulos"]
]
end
end