defmodule Phoenix.HTML.SimplifiedHelpers.Mixfile do use Mix.Project @description """ Some view helpers for phoenix html( truncate, time_ago_in_words ) """ def project do [app: :phoenix_html_simplified_helpers, version: "0.2.2", elixir: ">= 1.0.0", source_url: "https://github.com/ikeikeikeike/phoenix_html_simplified_helpers", compilers: [:gettext] ++ Mix.compilers, docs: [extras: ["README.md"]], description: @description, package: package, deps: deps] end # Configuration for the OTP application # # Type "mix help compile.app" for more information def application do [applications: [:logger, :calendar, :timex, :gettext]] end # Dependencies can be Hex packages: # # {:mydep, "~> 0.3.0"} # # Or git/path repositories: # # {:mydep, git: "https://github.com/elixir-lang/mydep.git", tag: "0.1.0"} # # Type "mix help deps" for more examples and options defp deps do [ {:timex, "~> 1.0"}, {:calendar, "~> 0.12"}, {:ecto, "~> 1.1"}, {:gettext, "~> 0.10"}, {:earmark, ">= 0.0.0", only: :dev}, {:ex_doc, "~> 0.10", only: :dev}, ] end defp package do [ maintainers: ["Tatsuo Ikeda / ikeikeikeike"], licenses: ["MIT"], links: %{"GitHub" => "https://github.com/ikeikeikeike/phoenix_html_simplified_helpers"}, ] end end