Sha256: aec4c297c8dd3a32ff6aa3cccfeccc6e9d20c6b1cc461911997d8080ad652e22

Contents?: true

Size: 536 Bytes

Versions: 6

Compression:

Stored size: 536 Bytes

Contents

# frozen_string_literal: true

#
# Copyright (c) 2018-present, Blue Marble Payroll, LLC
#
# This source code is licensed under the MIT license found in the
# LICENSE file in the root directory of this source tree.
#

require 'fileutils'
require 'pry'
require 'pry-byebug'
require 'yaml'

unless ENV['DISABLE_SIMPLECOV'] == 'true'
  require 'simplecov'
  require 'simplecov-console'

  SimpleCov.formatter = SimpleCov::Formatter::Console
  SimpleCov.start do
    add_filter %r{\A/spec/}
  end
end

require './lib/proforma/html_renderer'

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
proforma-html-renderer-1.0.4 spec/spec_helper.rb
proforma-html-renderer-1.0.3 spec/spec_helper.rb
proforma-html-renderer-1.0.2 spec/spec_helper.rb
proforma-html-renderer-1.0.1 spec/spec_helper.rb
proforma-html-renderer-1.0.0 spec/spec_helper.rb
proforma-html-renderer-1.0.0.pre.alpha spec/spec_helper.rb