Using spork4 and rspec 3, when run spork in terminal, it fails and show this following message:
Using RSpec, Rails
Preloading Rails environment
Loading Spork.prefork block...
undefined method `configure' for RSpec:Module (NoMethodError)
/Users/ahmed/projects/bdd/spec/spec_helper.rb:68:in `<top (required)>'Add require 'rspec/core' to speck_helper.rb before requireing spork, as below
require 'rubygems'
require 'rspec/core'
require 'spork'
Great, thanks