aboutsummaryrefslogtreecommitdiffstats
path: root/bin/rubocop
blob: 78641c589f051fd9bff1c95f11bf979957a769f9 (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.41.2"

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

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