Page MenuHomePhorge

No OneTemporary

Size
2 KB
Referenced Files
None
Subscribers
None
diff --git a/.travis.yml b/.travis.yml
index 76acdd8..f42b07f 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -1,21 +1,21 @@
language: elixir
elixir:
- - 1.6
- 1.7
- 1.8
+ - 1.9
otp_release:
- 20.3
- - 21.0
- 21.2
+ - 22.0
script:
- mix compile --warnings-as-errors
- mix test
- mix dialyzer --halt-exit-status
cache:
directories:
- _build
- deps
diff --git a/mix.exs b/mix.exs
index 35fb9b5..813ba63 100644
--- a/mix.exs
+++ b/mix.exs
@@ -1,64 +1,64 @@
defmodule OpenApiSpex.Mixfile do
use Mix.Project
@version "3.4.0"
def project do
[
app: :open_api_spex,
version: @version,
- elixir: "~> 1.6",
+ elixir: "~> 1.7",
elixirc_paths: elixirc_paths(Mix.env()),
start_permanent: Mix.env() == :prod,
description: description(),
package: package(),
deps: deps(),
consolidate_protocols: Mix.env() != :test,
source_url: "https://github.com/open-api-spex/open_api_spex",
homepage_url: "https://github.com/open-api-spex/open_api_spex",
docs: [extras: ["README.md"], main: "readme", source_ref: "v#{@version}"],
dialyzer: [
plt_add_apps: [:mix, :jason, :poison],
plt_add_deps: :apps_direct,
flags: ["-Werror_handling", "-Wno_unused", "-Wunmatched_returns", "-Wunderspecs"],
remove_defaults: [:unknown]
]
]
end
defp elixirc_paths(:test), do: ["lib", "test/support"]
defp elixirc_paths(_), do: ["lib"]
# Run "mix help compile.app" to learn about applications.
def application, do: [extra_applications: []]
defp description() do
"Leverage Open Api Specification 3 (swagger) to document, test, validate and explore your Plug and Phoenix APIs."
end
defp package() do
[
name: "open_api_spex",
files: ["lib", "mix.exs", "README.md", "LICENSE", "CHANGELOG.md"],
maintainers: [
"Mike Buhot (m.buhot@gmail.com)",
"Moxley Stratton",
"Pierre Fenoll (pierrefenoll@gmail.com)"
],
licenses: ["Mozilla Public License, version 2.0"],
links: %{"GitHub" => "https://github.com/open-api-spex/open_api_spex"}
]
end
# Run "mix help deps" to learn about dependencies.
defp deps do
[
{:poison, "~> 3.1", optional: true},
{:jason, "~> 1.0", optional: true},
{:plug, "~> 1.7"},
{:phoenix, "~> 1.3", only: :test},
{:ex_doc, "~> 0.19", only: :dev, runtime: false},
{:dialyxir, "~> 0.5", only: [:dev, :test], runtime: false}
]
end
end

File Metadata

Mime Type
text/x-diff
Expires
Sat, Nov 23, 5:14 PM (1 d, 4 h)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
39031
Default Alt Text
(2 KB)

Event Timeline