File: spec_helper.rb

package info (click to toggle)
ruby-prawn-icon 4.1.0-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 3,596 kB
  • sloc: ruby: 1,398; makefile: 5
file content (25 lines) | stat: -rw-r--r-- 580 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
# encoding: utf-8
#
# Copyright October 2014, Jesse Doyle. All rights reserved.
#
# This is free software. Please see the LICENSE and COPYING files for details.
#
#
#require 'simplecov'
#SimpleCov.start

#require "bundler"
#Bundler.setup

require "prawn/icon"
require 'pdf/inspector'
require "rspec"

# Requires supporting ruby files with custom matchers and macros, etc,
# in spec/extensions/ and its subdirectories.
Dir[File.dirname(__FILE__) + "/support/**/*.rb"].each { |f| require f }

RSpec.configure do |config|
  config.include PDFHelper
  config.include ParserHelper
end