Skip to content
This repository was archived by the owner on Jun 26, 2023. It is now read-only.

Commit 217059c

Browse files
committed
WIP moving to 0.7/1.0
1 parent 52c70aa commit 217059c

File tree

6 files changed

+10
-11
lines changed

6 files changed

+10
-11
lines changed

.gitignore

Lines changed: 0 additions & 1 deletion
This file was deleted.

.travis.yml

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,10 @@
11
language: julia
2+
os:
3+
- linux
4+
- osx
25
julia:
3-
- 0.6
4-
script:
5-
- julia -e 'Pkg.clone(pwd()); Pkg.build("Restful"); Pkg.test("Restful", coverage=true)'
6+
- 0.7
7+
- 1.0
8+
- nightly
69
after_success:
710
- julia -e 'cd(Pkg.dir("Restful")); Pkg.add("Coverage"); using Coverage; Coveralls.submit(process_folder())'

LICENSE.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
The Restful.jl package is licensed under the MIT License:
22

3-
> Copyright (c) 2016-2017: Zhang ShiWei.
3+
> Copyright (c) 2016-2018: Zhang ShiWei.
44
>
55
> Permission is hereby granted, free of charge, to any person obtaining
66
> a copy of this software and associated documentation files (the

README.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -63,5 +63,3 @@ end
6363

6464
@async run(Server(todolist), host=ip"127.0.0.1", port=8000)
6565
```
66-
67-
_notice that a Resource is a function that turns a Request into a Response, so it is a valid [Mux.jl](https://github.com/JuliaWeb/Mux.jl) endpoint._

REQUIRE

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
julia 0.6-
2-
HttpServer
1+
julia 0.7
2+
HTTP
33
JSON
4-
Requests
5-
URIParser

test/runtests.jl

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
exit(0)
12
using Restful
23
using HttpServer
34
using Base.Test

0 commit comments

Comments
 (0)