summaryrefslogtreecommitdiff
path: root/bin/rubocop
blob: 8014aff639cd8c2e2d2629ab0875ffa7daf70187 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#!/usr/bin/env ruby
# frozen_string_literal: true

load File.expand_path("../with_rubygems", __FILE__) if ENV["RGV"]

require "rubygems"

bundler_spec = Gem::Specification.load(File.expand_path("../../bundler.gemspec", __FILE__))
bundler_spec.dependencies.each do |dep|
  gem dep.name, dep.requirement
end

gem "rubocop", "= 0.65.0"

Gem.finish_resolve if Gem.respond_to?(:finish_resolve)

load Gem.bin_path("rubocop", "rubocop")