Namdak Tonpa 6 лет назад
Родитель
Сommit
9a4e21d50a
5 измененных файлов с 14 добавлено и 5 удалено
  1. 8 0
      .travis.yml
  2. 2 0
      README.md
  3. 1 1
      mix.exs
  4. 3 3
      src/rest.app.src
  5. 0 1
      src/rest_sup.erl

+ 8 - 0
.travis.yml

@@ -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"

+ 2 - 0
README.md

@@ -1,6 +1,8 @@
 REST: framework with typed JSON
 ===============================
 
+[![Build Status](https://travis-ci.org/synrc/rest.svg?branch=master)](https://travis-ci.org/synrc/rest)
+
 Features and Goals
 ------------------
 

+ 1 - 1
mix.exs

@@ -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

+ 3 - 3
src/rest.app.src

@@ -1,7 +1,7 @@
 {application, rest, [
-    {description,  "REST SXC"},
-    {vsn,          "2.9"},
-    {applications, [kernel, stdlib, cowboy]},
+    {description,  "REST Yoctoframework"},
+    {vsn,          "5.10"},
+    {applications, [kernel, stdlib]},
     {modules, []},
     {registered,   []},
     {mod, { rest_app, []}},

+ 0 - 1
src/rest_sup.erl

@@ -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}, []}}.