project_init 3.1.23

Quickly initialize projects from a template.
Documentation
---

language: rust
sudo: false

cache: cargo

os:
  - linux
  - osx
  # FIXME wtf??
  # - windows

rust:
  - nightly
  - stable

before_install:
  - wget https://github.com/vmchale/tomlcheck/releases/download/0.1.0.0/tomlcheck-x86_64-unkown-linux-gnu
  - chmod a+x tomlcheck-x86_64-unkown-linux-gnu

script:
  # TODO verify this works + make it lint on linux
  - if [ `uname` = "Linux" ]; then ./tomlcheck-x86_64-unkown-linux-gnu --file Cargo.toml ; fi
  - cargo build
  - cargo doc