Sha256: 48d41691696bf903572515203b57dbf3e174c6f802678d2fcd634639504cbdf7
Contents?: true
Size: 570 Bytes
Versions: 1
Compression:
Stored size: 570 Bytes
Contents
# encoding: UTF-8 $LOAD_PATH.unshift(File.join(File.dirname(__FILE__), '..', 'lib')) $LOAD_PATH.unshift(File.dirname(__FILE__)) require 'rspec' require 'coveralls' require 'simplecov' SimpleCov.start do add_filter '/spec/' end Coveralls.wear! require 'rtesseract' # Requires supporting files with custom matchers and macros, etc, # in ./support/ and its subdirectories. Dir["#{File.dirname(__FILE__)}/support/**/*.rb"].each { |f| require f } RSpec.configure do |config| config.after(:each) do RTesseract.configuration = RTesseract::Configuration.new end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
rtesseract-2.2.0 | spec/spec_helper.rb |