Packages
PhoenixSwagger is the library that provides swagger integration to the phoenix web framework.
Current section
30 Versions
Jump to
Current section
30 Versions
Compare versions
2
files changed
+4
additions
-4
deletions
| @@ -20,10 +20,10 @@ | |
| 20 20 | {<<"requirement">>,<<"~> 1.5 or ~> 2.0">>}], |
| 21 21 | [{<<"app">>,<<"ex_json_schema">>}, |
| 22 22 | {<<"name">>,<<"ex_json_schema">>}, |
| 23 | - {<<"optional">>,false}, |
| 23 | + {<<"optional">>,true}, |
| 24 24 | {<<"requirement">>,<<"~> 0.5.1">>}], |
| 25 25 | [{<<"app">>,<<"plug">>}, |
| 26 26 | {<<"name">>,<<"plug">>}, |
| 27 27 | {<<"optional">>,false}, |
| 28 28 | {<<"requirement">>,<<"~> 1.1">>}]]}. |
| 29 | - {<<"version">>,<<"0.3.1">>}. |
| 29 | + {<<"version">>,<<"0.3.2">>}. |
| @@ -3,7 +3,7 @@ defmodule PhoenixSwagger.Mixfile do | |
| 3 3 | |
| 4 4 | def project do |
| 5 5 | [app: :phoenix_swagger, |
| 6 | - version: "0.3.1", |
| 6 | + version: "0.3.2", |
| 7 7 | elixir: "~> 1.2", |
| 8 8 | build_embedded: Mix.env == :prod, |
| 9 9 | start_permanent: Mix.env == :prod, |
| @@ -32,7 +32,7 @@ defmodule PhoenixSwagger.Mixfile do | |
| 32 32 | defp deps do |
| 33 33 | [ |
| 34 34 | {:poison, "~> 1.5 or ~> 2.0"}, |
| 35 | - {:ex_json_schema, "~> 0.5.1"}, |
| 35 | + {:ex_json_schema, "~> 0.5.1", optional: :true}, |
| 36 36 | {:plug, "~> 1.1"} |
| 37 37 | ] |
| 38 38 | end |