12 lines
No EOL
268 B
Ruby
12 lines
No EOL
268 B
Ruby
# frozen_string_literal: true
|
|
|
|
require 'rubygems'
|
|
gemfile = File.expand_path('../../../../Gemfile', __FILE__)
|
|
|
|
if File.exist?(gemfile)
|
|
ENV['BUNDLE_GEMFILE'] ||= gemfile
|
|
require 'bundler'
|
|
Bundler.setup
|
|
end
|
|
|
|
$:.unshift File.expand_path('../../../../lib', __FILE__) |