Packages
use google locations to create geocoords for driving directions between multiple locations and send them to your api.
Current section
Files
Jump to
Current section
Files
google_directions_generator
mix.exs
mix.exs
defmodule GoogleDirectionsGenerator.Mixfile do
use Mix.Project
@version "0.1.0"
def project do
[
app: :google_directions_generator,
version: @version,
elixir: "~> 1.4",
build_embedded: Mix.env == :prod,
start_permanent: Mix.env == :prod,
deps: deps(),
description: description(),
name: "Google Directions Generator",
source_url: "https://github.com/mithereal/google_directions_generator",
package: package()
]
end
def application do
[extra_applications: [:logger]]
end
defp deps do
[
{:ex_doc, ">= 0.0.0", only: :dev},
{:google_maps, "~> 0.5"},
{:httpotion, "~> 3.0.2"},
{:poison, "~> 2.0"}
]
end
defp description() do
"""
use google locations to create geocoords for driving directions between multiple locations and send them to your api.
"""
end
defp package() do
[maintainers: ["Jason Clark"],
licenses: ["MIT"],
links: %{"GitHub" => "https://github.com/mithereal/google_directions_generator"}]
end
end