File tree Expand file tree Collapse file tree 6 files changed +12
-12
lines changed Expand file tree Collapse file tree 6 files changed +12
-12
lines changed Original file line number Diff line number Diff line change 27
27
28
28
# # uncomment the following lines to override the default test script
29
29
# script:
30
- # - julia -e 'Pkg.clone(pwd()); Pkg.build("TerminalGraphics "); Pkg.test("TerminalGraphics "; coverage=true)'
30
+ # - julia -e 'Pkg.clone(pwd()); Pkg.build("UnicodeGraphics "); Pkg.test("UnicodeGraphics "; coverage=true)'
31
31
after_success :
32
32
# push coverage results to Coveralls
33
- - julia -e 'cd(Pkg.dir("TerminalGraphics ")); Pkg.add("Coverage"); using Coverage; Coveralls.submit(Coveralls.process_folder())'
33
+ - julia -e 'cd(Pkg.dir("UnicodeGraphics ")); Pkg.add("Coverage"); using Coverage; Coveralls.submit(Coveralls.process_folder())'
34
34
# push coverage results to Codecov
35
- - julia -e 'cd(Pkg.dir("TerminalGraphics ")); Pkg.add("Coverage"); using Coverage; Codecov.submit(Codecov.process_folder())'
35
+ - julia -e 'cd(Pkg.dir("UnicodeGraphics ")); Pkg.add("Coverage"); using Coverage; Codecov.submit(Codecov.process_folder())'
Original file line number Diff line number Diff line change 1
- The TerminalGraphics .jl package is licensed under the MIT "Expat" License:
1
+ The UnicodeGraphics .jl package is licensed under the MIT "Expat" License:
2
2
3
3
> Copyright (c) 2018: Rafael Schouten.
4
4
>
Original file line number Diff line number Diff line change 1
- # TerminalGraphics
1
+ # UnicodeGraphics
2
2
3
- [ ![ Build Status] ( https://travis-ci.org/rafaqz/TerminalGraphics .jl.svg?branch=master )] ( https://travis-ci.org/rafaqz/TerminalGraphics .jl )
4
- [ ![ Coverage Status] ( https://coveralls.io/repos/rafaqz/TerminalGraphics .jl/badge.svg?branch=master&service=github )] ( https://coveralls.io/github/rafaqz/TerminalGraphics .jl?branch=master )
5
- [ ![ codecov.io] ( http://codecov.io/github/rafaqz/TerminalGraphics .jl/coverage.svg?branch=master )] ( http://codecov.io/github/rafaqz/TerminalGraphics .jl?branch=master )
3
+ [ ![ Build Status] ( https://travis-ci.org/rafaqz/UnicodeGraphics .jl.svg?branch=master )] ( https://travis-ci.org/rafaqz/UnicodeGraphics .jl )
4
+ [ ![ Coverage Status] ( https://coveralls.io/repos/rafaqz/UnicodeGraphics .jl/badge.svg?branch=master&service=github )] ( https://coveralls.io/github/rafaqz/UnicodeGraphics .jl?branch=master )
5
+ [ ![ codecov.io] ( http://codecov.io/github/rafaqz/UnicodeGraphics .jl/coverage.svg?branch=master )] ( http://codecov.io/github/rafaqz/UnicodeGraphics .jl?branch=master )
6
6
7
7
Convert a matrix of Real into a braile or block Unicode string, real fast.
8
8
Original file line number Diff line number Diff line change @@ -41,7 +41,7 @@ build_script:
41
41
# Need to convert from shallow to complete for Pkg.clone to work
42
42
- IF EXIST .git\shallow (git fetch --unshallow)
43
43
- C:\projects\julia\bin\julia -e "versioninfo();
44
- Pkg.clone(pwd(), \"TerminalGraphics \"); Pkg.build(\"TerminalGraphics \")"
44
+ Pkg.clone(pwd(), \"UnicodeGraphics \"); Pkg.build(\"UnicodeGraphics \")"
45
45
46
46
test_script :
47
- - C:\projects\julia\bin\julia -e "Pkg.test(\"TerminalGraphics \")"
47
+ - C:\projects\julia\bin\julia -e "Pkg.test(\"UnicodeGraphics \")"
Original file line number Diff line number Diff line change 1
1
"""
2
2
Block and braile rendering of julia arrays, for terminal graphics.
3
3
"""
4
- module TerminalGraphics
4
+ module UnicodeGraphics
5
5
6
6
export blockize, brailize
7
7
Original file line number Diff line number Diff line change 1
- using TerminalGraphics ,
1
+ using UnicodeGraphics ,
2
2
Test
3
3
4
4
pac = [0 0 0 0 0 0 0 1 1 1 1 1 1 0 0 0 0 0 0 0 ;
You can’t perform that action at this time.
0 commit comments