Skip to content

Commit

Permalink
Meta information
Browse files Browse the repository at this point in the history
  • Loading branch information
Miguel Garcia committed Apr 7, 2018
1 parent 2e9935f commit 0e63a04
Show file tree
Hide file tree
Showing 3 changed files with 20 additions and 14 deletions.
30 changes: 20 additions & 10 deletions mix.exs
Expand Up @@ -5,10 +5,17 @@ defmodule ExGram.Mixfile do
[
app: :ex_gram,
version: "0.5.0-rc2",
package: package(),
source_url: "https://github.com/rockneurotiko/ex_gram",
elixir: "~> 1.4",
elixirc_paths: elixirc_paths(Mix.env()),
build_embedded: Mix.env() == :prod,
start_permanent: Mix.env() == :prod,
deps: deps()
deps: deps(),
docs: [
main: "readme",
extras: ["README.md"]
]
]
end

Expand All @@ -20,15 +27,18 @@ defmodule ExGram.Mixfile do
[extra_applications: [:logger]]
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 package do
[
maintainers: ["Rock Neurotiko / Miguel Garcia"],
licenses: ["Beerware"],
links: %{"GitHub" => "https://github.com/rockneurotiko/ex_gram"}
]
end

# Specifies which paths to compile per environment.
defp elixirc_paths(:test), do: ["lib", "test/support"]
defp elixirc_paths(_), do: ["lib"]

defp deps do
[
{:poison, "~> 2.1"},
Expand Down
File renamed without changes.
4 changes: 0 additions & 4 deletions test/test_helper.exs
@@ -1,5 +1 @@
ExUnit.start()

# Load support files
files = Path.wildcard("#{__DIR__}/support/**/*.exs")
Enum.each(files, &Code.require_file(&1, __DIR__))

0 comments on commit 0e63a04

Please sign in to comment.