spec/spec_helper.rb in usps_flags-grades-0.0.12 vs spec/spec_helper.rb in usps_flags-grades-0.1.0

- old
+ new

@@ -1,5 +1,7 @@ +# frozen_string_literal: true + require 'bundler/setup' Bundler.setup require 'simplecov' SimpleCov.start @@ -10,16 +12,16 @@ # USPSFlags::Errors::InvalidGrade RSpec::Expectations.configuration.on_potential_false_positives = :nothing RSpec.configure do |config| config.before(:suite) do - $tmp_flags_dir = "tmp/flags" + $tmp_flags_dir = 'tmp/flags' USPSFlags.configure do |c| c.flags_dir = $tmp_flags_dir end end config.after(:suite) do - ::FileUtils.rm_rf("tmp") if ::Dir.exist?("tmp") + ::FileUtils.rm_rf('tmp') if ::Dir.exist?('tmp') end end