uclicious-libucl-sys 0.8.2

Low-level bindings to libucl.
Documentation
1
2
3
4
5
6
7
8
9
10
11
dependencies:
  pre:
    - sudo apt-get update -qq || true
    - sudo apt-get install -qq autoconf libcurl4-openssl-dev automake libtool lcov
    - gem install coveralls-lcov
test:
  override:
    - ./autogen.sh && ./configure --enable-urls --enable-coverage && make && make check
    - make clean clean-coverage coverage-lcov
    - lcov --no-external -b ../libucl -d ../libucl -c --output-file coverage.info
    - if [ ! -z $COVERALLS_REPO_TOKEN ]; then coveralls-lcov -t ${COVERALLS_REPO_TOKEN} coverage.info || true; fi