#!/usr/bin/env rake
require 'bundler/gem_tasks'

task default: :test

task :test do
  sh "bundle exec rspec spec/commands.rb"
end
