mirror of
https://github.com/hakanensari/frankfurter.git
synced 2024-11-22 11:02:30 +01:00
3319c49dca
- Bump ruby version - Remove obsolete files, including deploy artefacts - Don't use pride when testing - Store gem and app in same repo - Switch to asdf
15 lines
265 B
Ruby
15 lines
265 B
Ruby
# frozen_string_literal: true
|
|
|
|
$LOAD_PATH.unshift(File.expand_path('../../lib', __FILE__))
|
|
|
|
require 'minitest/autorun'
|
|
require 'vcr'
|
|
require 'webmock'
|
|
|
|
require 'fixer'
|
|
|
|
VCR.configure do |c|
|
|
c.cassette_library_dir = 'spec/vcr_cassettes'
|
|
c.hook_into :webmock
|
|
end
|