Skip to content

Commit 6b2c2c4

Browse files
committed
Rename Chars to ChrBase, change README.md and Travis script since ModuleInterfaceTools is registered
1 parent 6f7fb9b commit 6b2c2c4

2 files changed

Lines changed: 5 additions & 6 deletions

File tree

.travis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ git:
2020
# uncomment the following lines to override the default test script
2121
script:
2222
- if [[ -a .git/shallow ]]; then git fetch --unshallow; fi
23-
- julia -e 'VERSION < v"0.7.0-DEV" || (using Pkg); d="https://github.com/JuliaString" ; for n in ("ModuleInterfaceTools", "StrAPI", "CharSetEncodings", "Chars", "StrBase") ; Pkg.clone("$d/$n.jl") ; end ; Pkg.add("Format"); Pkg.clone("$d/StrLiterals.jl"); Pkg.clone(pwd()); Pkg.test("StrFormat"; coverage=true)'
23+
- julia -e 'VERSION < v"0.7.0-DEV" || (using Pkg); d="https://github.com/JuliaString" ; Pkg.add("ModuleInterfaceTools") ; for n in ("StrAPI", "CharSetEncodings", "ChrBase", "StrBase") ; Pkg.clone("$d/$n.jl") ; end ; Pkg.add("Format"); Pkg.clone("$d/StrLiterals.jl"); Pkg.clone(pwd()); Pkg.test("StrFormat"; coverage=true)'
2424
after_success:
2525
# push coverage results to Coveralls
2626
- julia -e 'VERSION < v"0.7.0-DEV" || (using Pkg); cd(Pkg.dir("StrFormat")); Pkg.add("Coverage"); using Coverage; Coveralls.submit(Coveralls.process_folder())'

README.md

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,9 @@
11
# StrFormat
22

3-
[![Build Status](https://travis-ci.org/JuliaString/StrFormat.jl.svg?branch=master)](https://travis-ci.org/JuliaString/StrFormat.jl)
4-
5-
[![Coverage Status](https://coveralls.io/repos/github/JuliaString/StrFormat.jl/badge.svg?branch=master)](https://coveralls.io/github/JuliaString/StrFormat.jl?branch=master)
6-
7-
[![codecov.io](http://codecov.io/github/JuliaString/StrFormat.jl/coverage.svg?branch=master)](http://codecov.io/github/JuliaString/StrFormat.jl?branch=master)
3+
| **Package Status** | **Package Evaluator** | **Coverage** |
4+
|:------------------:|:---------------------:|:-----------------:|
5+
| [![License](http://img.shields.io/badge/license-MIT-brightgreen.svg?style=flat)](LICENSE.md) [![Build Status](https://travis-ci.org/JuliaString/StrFormat.jl.svg?branch=master)](https://travis-ci.org/JuliaString/StrFormat.jl) | [![StrFormat](http://pkg.julialang.org/badges/StrFormat_0.6.svg)](http://pkg.julialang.org/?pkg=StrFormat) [![StrFormat](http://pkg.julialang.org/badges/StrFormat_0.7.svg)](http://pkg.julialang.org/?pkg=StrFormat) | [![Coverage Status](https://coveralls.io/repos/github/JuliaString/StrFormat.jl/badge.svg?branch=master)](https://coveralls.io/github/JuliaString/StrFormat.jl?branch=master)
6+
[![codecov.io](http://codecov.io/github/JuliaString/StrFormat.jl/coverage.svg?branch=master)](http://codecov.io/github/JuliaString/StrFormat.jl?branch=master) |
87

98
StrFormat extends the string literals provided by the [StrLiterals](https://github.com/JuliaString/StrLiterals.jl) package.
109
It uses an extensively modified fork of the [Formatting](https://github.com/JuliaIO/Formatting.jl) package to provide formatting capability, as well as Tom Breloff's [PR #10](https://github.com/JuliaIO/Formatting.jl/pull/10), which provides the capability of using settable printing defaults based on the types of the argument (see [Format](https://github.com/JuliaString/Format.jl).

0 commit comments

Comments
 (0)