master
 1#!/usr/bin/env ruby
 2begin
 3  load File.expand_path('../spring', __FILE__)
 4rescue LoadError => e
 5  raise unless e.message.include?('spring')
 6end
 7require "pathname"
 8ENV["BUNDLE_GEMFILE"] ||= File.expand_path("../../Gemfile",
 9  Pathname.new(__FILE__).realpath)
10
11require "rubygems"
12require "bundler/setup"
13
14load Gem.bin_path("rspec-core", "rspec")