Skip to content

Commit 81cb63b

Browse files
committed
rename JuliaBox.jl to JuliaWebAPI.jl. fix #5
1 parent 741fd4b commit 81cb63b

File tree

7 files changed

+10
-10
lines changed

7 files changed

+10
-10
lines changed

LICENSE.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
The JuliaBox.jl package is licensed under the MIT "Expat" License:
1+
The JuliaWebAPI.jl package is licensed under the MIT "Expat" License:
22

33
> Copyright (c) 2014: Tanmay K. Mohapatra
44
>

README.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
# JuliaBox.jl
1+
# JuliaWebAPI.jl
22

3-
[![Build Status](https://travis-ci.org/tanmaykm/JuliaBox.jl.png)](https://travis-ci.org/tanmaykm/JuliaBox.jl)
3+
[![Build Status](https://travis-ci.org/tanmaykm/JuliaWebAPI.jl.png)](https://travis-ci.org/tanmaykm/JuliaWebAPI.jl)
44

55
Facilitates wrapping Julia functions into a remote callable API via ZMQ and HTTP.
66

@@ -12,7 +12,7 @@ Assume a file `srvr.jl` that contains the definition of the following code
1212

1313
```julia
1414
#load package
15-
using JuliaBox
15+
using JuliaWebAPI
1616

1717
#define function testfn1
1818
function testfn1(arg1, arg2; narg1=1, narg2=2)
@@ -28,7 +28,7 @@ process([(testfn1, true), (testfn2, false)], "tcp://127.0.0.1:9999"; bind=true)
2828

2929
Then, in a Julia REPL, run the following code
3030
```julia
31-
julia> using JuliaBox #Load package
31+
julia> using JuliaWebAPI #Load package
3232

3333
julia> addprocs(1) #Create a second process. This process will run the ZMQ listener
3434
1-element Array{Any,1}:

src/APIResponder.jl

+1-1
Original file line numberDiff line numberDiff line change
@@ -127,7 +127,7 @@ end
127127

128128
function process()
129129
Logging.configure(level=INFO, filename="apisrvr.log")
130-
info("Starting api server from JuliaBox environment...")
130+
info("Reading api server configuration from environment...")
131131
info("JBAPI_NAME=" * get(ENV,"JBAPI_NAME",""))
132132
info("JBAPI_QUEUE=" * get(ENV,"JBAPI_QUEUE",""))
133133
info("JBAPI_CMD=" * get(ENV,"JBAPI_CMD",""))

src/JuliaBox.jl src/JuliaWebAPI.jl

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
module JuliaBox
1+
module JuliaWebAPI
22

33
using ZMQ
44
using JSON

test/clnt.jl

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
using JuliaBox
1+
using JuliaWebAPI
22
using Logging
33
using Base.Test
44

test/restsrvr.jl

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
using JuliaBox
1+
using JuliaWebAPI
22
using Logging
33
using Base.Test
44

test/srvr.jl

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
using JuliaBox
1+
using JuliaWebAPI
22
using Compat
33

44
function testfn1(arg1, arg2; narg1=1, narg2=2)

0 commit comments

Comments
 (0)