environment:
  nodejs_version: "6.2"

init:
  - git config --global core.autocrlf true

install:
  - gem install bundler
  - ps: Install-Product node $env:nodejs_version
  - npm install
  - bundle install --path=./vendor/bundle

test_script:
  - node --version
  - npm --version
  - npm test

build: off
