#!/usr/bin/env bash

set -e

echo "===> Bundling..."
script/bootstrap --quiet

echo "===> Running specs..."
bundle exec rspec

echo "===> Running Rubocop..."
bundle exec rubocop
