Sha256: 544f994cf8472a13e706deda7a04b29e1504cbc1f1455a19ce575cbd59b85a2b

Contents?: true

Size: 563 Bytes

Versions: 3

Compression:

Stored size: 563 Bytes

Contents

# -*- coding: utf-8 -*-

APP_ROOT = File.expand_path(File.join(File.dirname(__FILE__), ".."))
$LOAD_PATH.unshift APP_ROOT
$LOAD_PATH.unshift File.join(APP_ROOT)
$LOAD_PATH.unshift File.join(APP_ROOT, 'lib')

require 'recommendation'

if ENV['COVERAGE'] == 'on'
  require 'simplecov'
  require 'simplecov-rcov'
  SimpleCov.formatter = SimpleCov::Formatter::RcovFormatter

  SimpleCov.start do
    add_filter "spec"
    add_filter "vendor"
  end
end

unless /^1\.9\./ =~ RUBY_VERSION
  require 'rspec'
end

RSpec.configure do |config|
end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
recommendation-0.3.0 spec/spec_helper.rb
recommendation-0.2.0 spec/spec_helper.rb
recommendation-0.1.3 spec/spec_helper.rb