mirror of
https://github.com/Freika/dawarich.git
synced 2026-04-22 03:00:29 -04:00
11 lines
297 B
Ruby
Executable File
11 lines
297 B
Ruby
Executable File
#!/usr/bin/env ruby
|
|
# frozen_string_literal: true
|
|
|
|
require 'rubygems'
|
|
require 'bundler/setup'
|
|
|
|
# explicit rubocop config increases performance slightly while avoiding config confusion.
|
|
ARGV.unshift('--config', File.expand_path('../.rubocop.yml', __dir__))
|
|
|
|
load Gem.bin_path('rubocop', 'rubocop')
|