mirror of
https://github.com/czhu12/canine.git
synced 2025-12-16 16:35:10 -06:00
9 lines
266 B
Ruby
Executable File
9 lines
266 B
Ruby
Executable File
#!/usr/bin/env ruby
|
|
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")
|