Sha256: b419496fe9948b1db5a4216594c6a2100cd88bce8afb8cd8cff6dcc1a6de9300

Contents?: true

Size: 376 Bytes

Versions: 21

Compression:

Stored size: 376 Bytes

Contents

require 'simplecov' if ENV['COVERAGE']

require 'spork'

Spork.prefork do

  require 'rspec'
  require 'pathname'
  require 'capistrano'

  #Bundler.require :default, :test

  RSpec.configure do |config|
    # some (optional) config here
  end

end

Spork.each_run do

  Dir[Pathname.pwd.join(*%w{spec support ** *.rb}).expand_path].each do |file|
    require file
  end

end

Version data entries

21 entries across 21 versions & 1 rubygems

Version Path
o2h-0.0.4 spec/spec_helper.rb