Sha256: a2101ae33da05d3c4ea7ef6018e015a8f2ac8f0069c8deec4da9754023a71513

Contents?: true

Size: 578 Bytes

Versions: 1

Compression:

Stored size: 578 Bytes

Contents

# This tells Bundler only load gems in side gemspec (not the locally installed ones). See http://stackoverflow.com/questions/4398262/setup-rspec-to-test-a-gem-not-rails
require 'bundler/setup'
Bundler.setup

RSpec.configure do |c|
  c.fail_fast = true
#   c.warnings = true
  c.treat_symbols_as_metadata_keys_with_true_values = true # so i can run individual test just by appending :focus to them
end

# this enables Coveralls
require 'coveralls'
Coveralls.wear!

# some variables used everywhere
$test_filename = './spec/testfile1.ods'

# require my gem
require 'rspreadsheet'

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
rspreadsheet-0.3 spec/spec_helper.rb