Sha256: fec77dbe52b92c007f4bf7b12dc7249ec3266b7adc35c9476c3aa7d7444af782

Contents?: true

Size: 531 Bytes

Versions: 8

Compression:

Stored size: 531 Bytes

Contents

$LOAD_PATH.unshift(File.dirname(__FILE__))
$LOAD_PATH.unshift(File.join(File.dirname(__FILE__), '..', 'lib'))

FIXTURES = File.expand_path(File.join(File.dirname(__FILE__), 'fixtures'))

require 'rspec/its'
require 'simplecov'

if ENV['TRAVIS']
  require 'coveralls'
  SimpleCov.formatter = Coveralls::SimpleCov::Formatter
end

SimpleCov.start do
  add_filter '/spec/'
end

# See http://betterspecs.org/
RSpec.configure do |config|
  config.expect_with :rspec do |c|
    c.syntax = :expect
  end
end

require 'opt_parse_validator'

Version data entries

8 entries across 8 versions & 1 rubygems

Version Path
opt_parse_validator-0.0.9 spec/spec_helper.rb
opt_parse_validator-0.0.8 spec/spec_helper.rb
opt_parse_validator-0.0.7 spec/spec_helper.rb
opt_parse_validator-0.0.6 spec/spec_helper.rb
opt_parse_validator-0.0.5 spec/spec_helper.rb
opt_parse_validator-0.0.4 spec/spec_helper.rb
opt_parse_validator-0.0.3 spec/spec_helper.rb
opt_parse_validator-0.0.2 spec/spec_helper.rb