begin require "bundler/setup" rescue LoadError puts "You must `gem install bundler` and `bundle install` to run rake tasks" end require "bundler/gem_tasks" require File.expand_path("../spec/dummy/config/application", __FILE__) Rails.application.load_tasks ## # Configure the test suite. ## require "rspec/core" require "rspec/core/rake_task" RSpec::Core::RakeTask.new ## # By default, just run the tests. ## task default: :spec