Sha256: 696f4e459072c32bfe855138dd2db78490443d91059e8121a72dab8d912510f6

Contents?: true

Size: 569 Bytes

Versions: 6

Compression:

Stored size: 569 Bytes

Contents

# encoding: utf-8
require 'simplecov'
require 'active_support'

SimpleCov.start do
  root File.join(File.dirname(__FILE__), '..')
  add_filter "/bin/"
  add_filter "/spec/"
end

$:.unshift(File.dirname(__FILE__))
$:.unshift(File.join(File.dirname(__FILE__), '..', 'lib'))
require 'json_schema_tools'
require 'test_helpers'

RSpec.configure do |config|
end

# set global json schema path for examples
SchemaTools.schema_path = File.expand_path('../fixtures', __FILE__)

puts "Testing with ActiveModel Version: #{ActiveModel.version rescue ActiveModel::VERSION::STRING}"

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
json_schema_tools-0.2.3 spec/spec_helper.rb
json_schema_tools-0.2.2 spec/spec_helper.rb
json_schema_tools-0.2.1 spec/spec_helper.rb
json_schema_tools-0.2.0 spec/spec_helper.rb
json_schema_tools-0.1.2 spec/spec_helper.rb
json_schema_tools-0.1.1 spec/spec_helper.rb