class RuboCop::Cop::Chef::Modernize::UseRequireRelative

Instead of using require with a File.expand_path and __FILE__ use the simpler require_relative method.

@example

### incorrect
require File.expand_path('../../libraries/helpers', __FILE__)

### correct
require_relative '../libraries/helpers'