Sha256: 01398434e3f4e886a0bedd617ff34b64883ef92ea6f7bda43a4947688f246921
Contents?: true
Size: 526 Bytes
Versions: 2
Compression:
Stored size: 526 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 'yaml' require 'pry' require 'simplecov' require 'simplecov-console' SimpleCov.formatter = SimpleCov::Formatter::Console SimpleCov.start require './lib/proforma' def yaml_read(file) YAML.safe_load(File.open(file)) end def fixture(file) File.open(File.join('spec', 'fixtures', file)).read end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
proforma-1.0.1 | spec/spec_helper.rb |
proforma-1.0.0 | spec/spec_helper.rb |