Sha256: e0a57f41cd2f7f8eae9b037e41c0ae833f44f078948c1ca5773a543d4bed7fab

Contents?: true

Size: 1.09 KB

Versions: 5

Compression:

Stored size: 1.09 KB

Contents

# this must before application code is required
require 'coveralls'
Coveralls.wear!

# This file was generated by the `rspec --init` command. Conventionally, all
# specs live under a `spec` directory, which RSpec adds to the `$LOAD_PATH`.
# Require this file using `require "spec_helper"` to ensure that it is only
# loaded once.
#
# See http://rubydoc.info/gems/rspec-core/RSpec/Core/Configuration
RSpec.configure do |config|
  config.treat_symbols_as_metadata_keys_with_true_values = true
  config.run_all_when_everything_filtered = true
  config.filter_run :focus

  # Run specs in random order to surface order dependencies. If you find an
  # order dependency and want to debug it, you can fix the order by providing
  # the seed, which is printed after each run.
  #     --seed 1234
  config.order = 'random'
end

# just add the lib folder to the load path
# -> actual 'require' calls will be done within each spec (speed + modularity)
lib = File.expand_path('../lib', File.dirname(__FILE__))
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)

ASSETS_PATH = File.expand_path('assets', File.dirname(__FILE__))

Version data entries

5 entries across 5 versions & 2 rubygems

Version Path
xploy-0.1.1.beta spec/spec_helper.rb
xploy-0.1.0.beta spec/spec_helper.rb
xway-0.0.3.beta spec/spec_helper.rb
xway-0.0.2.beta spec/spec_helper.rb
xway-0.0.1.beta spec/spec_helper.rb