@@ -0,0 +1,8 @@
+language: erlang
+otp_release:
+ - 19.3
+ - 20.3.8
+script:
+ - "curl -fsSL https://raw.github.com/synrc/mad/master/mad > mad"
+ - "chmod +x mad"
+ - "./mad dep com"
@@ -1,6 +1,8 @@
REST: framework with typed JSON
===============================
+[](https://travis-ci.org/synrc/rest)
+
Features and Goals
------------------
@@ -3,7 +3,7 @@ defmodule REST.Mixfile do
def project do
[app: :rest,
- version: "1.5.0",
+ version: "5.10.0",
description: "REST erlang interface generator",
package: package]
end
@@ -1,7 +1,7 @@
{application, rest, [
- {description, "REST SXC"},
+ {description, "REST Yoctoframework"},
- {vsn, "2.9"},
+ {vsn, "5.10"},
- {applications, [kernel, stdlib, cowboy]},
+ {applications, [kernel, stdlib]},
{modules, []},
{registered, []},
{mod, { rest_app, []}},
@@ -1,7 +1,6 @@
-module(rest_sup).
-behaviour(supervisor).
-export([start_link/0, init/1]).
--compile(export_all).
start_link() -> supervisor:start_link({local, ?MODULE}, ?MODULE, []).
init([]) -> {ok, {{one_for_one, 5, 10}, []}}.