Sha256: 6669171f03ce5bcf37466a0a45eccd80a72af7b1f01aabf1f79412bbe1a14b03

Contents?: true

Size: 1.14 KB

Versions: 12

Compression:

Stored size: 1.14 KB

Contents

require 'rubygems'
require 'spork'

Spork.prefork do
  # Loading more in this block will cause your tests to run faster. However,
  # if you change any configuration or code from libraries loaded here, you'll
  # need to restart spork for it take effect.
  $LOAD_PATH.unshift(File.dirname(__FILE__))
  $LOAD_PATH.unshift(File.join(File.dirname(__FILE__), '..', 'lib'))
  $LOAD_PATH.unshift(File.join(File.dirname(__FILE__), 'shared'))

  require 'savage'
  require 'rspec'
  require 'rspec/autorun'
  RSpec.configure do |config|

  end

  Dir[File.join(File.dirname(__FILE__) << '/shared', "*.rb")].each {|file| require File.basename(file) }
end

Spork.each_run do
  # This code will be run each time you run your specs.

end

# --- Instructions ---
# - Sort through your spec_helper file. Place as much environment loading
#   code that you don't normally modify during development in the
#   Spork.prefork block.
# - Place the rest under Spork.each_run block
# - Any code that is left outside of the blocks will be ran during preforking
#   and during each_run!
# - These instructions should self-destruct in 10 seconds.  If they don't,
#   feel free to delete them.
#

Version data entries

12 entries across 12 versions & 3 rubygems

Version Path
savage-transform-1.3.0 spec/spec_helper.rb
text2path-0.0.2 lib/ext/savage/spec/spec_helper.rb
text2path-0.0.1 lib/ext/savage/spec/spec_helper.rb
savage-1.2.0 spec/spec_helper.rb
savage-1.1.8 spec/spec_helper.rb
savage-1.1.7 spec/spec_helper.rb
savage-1.1.6 spec/spec_helper.rb
savage-1.1.5 spec/spec_helper.rb
savage-1.1.4 spec/spec_helper.rb
savage-1.1.3 spec/spec_helper.rb
savage-1.1.2 spec/spec_helper.rb
savage-1.1.1 spec/spec_helper.rb