#!/bin/bash

if [ $1 == "-c" ]; then
	bundle exec rails c
fi
if [ $1 == "-s" ]; then
	bundle exec rails s
fi

#echo "Only use: start -c or start -s. Don't be a jackass."