aboutsummaryrefslogtreecommitdiffstats
path: root/bin/rubocop
blob: 9e0e1488ad3ab63c242c26c2c35ab249fcafebd3 (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.to_s
end

gem "rubocop", "= 0.39.0"

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

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