gib 0.1.1

A .gitignore bootstrapper for projects that use git
Documentation
stages:
  - build

rust-latest:
  stage: build
  image: rust:latest
  variables:
    GIT_SUBMODULE_STRATEGY: recursive
  script:
    - cargo build --verbose
    - cargo test --verbose

rust-nightly:
  stage: build
  image: rustlang/rust:nightly
  variables:
    GIT_SUBMODULE_STRATEGY: recursive
  script:
    - cargo build --verbose
    - cargo test --verbose
  allow_failure: true