Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
23 commits
Select commit Hold shift + click to select a range
e098926
Updated rockspec to 1.7.0
shakna-israel Jan 23, 2018
763af5f
Began implementing base64, added test suit for it
shakna-israel Jan 23, 2018
28db9e9
Imlemented left and right bitshifts
shakna-israel Jan 23, 2018
7f52e5f
Regenerated docs
shakna-israel Jan 23, 2018
e8c303c
Implemented base64 encode using bit32 library
shakna-israel Mar 19, 2018
87a0647
Implemented abs.floor, mod.floor. Mod is now a callable table, but no…
shakna-israel Mar 19, 2018
e15fe64
Began implementing matrix, updated docs.
shakna-israel Mar 19, 2018
0ef3129
More matrix funcs
shakna-israel Mar 19, 2018
192019a
More matrix funcs
shakna-israel Mar 19, 2018
b91a62c
Minor big fixes
shakna-israel Mar 19, 2018
122ec20
Required style changes for <1000 LOC
shakna-israel Mar 19, 2018
9b819f9
bit32 compat patch
shakna-israel Mar 19, 2018
4330784
bit32 compat patch
shakna-israel Mar 19, 2018
6faaafe
bit32 compat patch
shakna-israel Mar 19, 2018
28ce1e7
bit32 compat patch
shakna-israel Mar 19, 2018
46ebbe1
Attempt to add LuaCov to TravisCI
shakna-israel Mar 20, 2018
286c37d
TravisCI requires sudo for LuaRocks
shakna-israel Mar 20, 2018
14ee4ee
LuaCov mistype in TravisCI
shakna-israel Mar 20, 2018
94c4293
Temporarily disable base64 decode tests
shakna-israel Mar 20, 2018
c336cde
Add Codecov link to TravisCI
shakna-israel Mar 20, 2018
05059fe
Added LuaCov config
shakna-israel Mar 20, 2018
ff545e2
Added codecov badge, removed khel... badge
shakna-israel Mar 20, 2018
2eaa876
Added tests for matrices functions so far
shakna-israel Mar 20, 2018
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions .luacov
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
return {
["configfile"] = ".luacov",
["statsfile"] = "luacov.stats.out",
["reportfile"] = "luacov.report.out",
runreport = true,
deletestats = false,
["include"] = { 'f' }
}
8 changes: 6 additions & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,13 @@ branches:

before_install:
- sudo apt-get update -qq
- sudo apt-get install -qq lua5.1 lua5.2 luajit
- sudo apt-get install -qq lua5.1 lua5.2 luajit luarocks
- sudo luarocks install cluacov

script:
- lua5.1 test.lua
- lua5.1 -lluacov test.lua
- lua5.2 test.lua
- luajit test.lua

after_success:
- bash <(curl -s https://codecov.io/bash)
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@
A functional Lua extension library.

[![Build Status](https://travis-ci.org/shakna-israel/f.lua.svg?branch=master)](https://travis-ci.org/shakna-israel/f.lua)
[![codecov](https://codecov.io/gh/shakna-israel/f.lua/branch/master/graph/badge.svg)](https://codecov.io/gh/shakna-israel/f.lua)
[![License](http://img.shields.io/badge/Licence-MIT-brightgreen.svg)](LICENSE)
[![Krihelimeter](http://krihelinator.xyz/badge/shakna-israel/f.lua)](http://krihelinator.xyz/repositories/shakna-israel/f.lua)

Compatibility: Lua 5.1, 5.2, 5.3, and Luajit.

Expand Down
Loading