summaryrefslogtreecommitdiff
path: root/bin/rubocop
blob: 01840861ccb5b5ea1f7ef53a77bff3f922ed896d (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.37.1"

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

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