rake 13.0.3 → 13.0.4
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/lib/rake/application.rb +7 -0
- data/lib/rake/rake_test_loader.rb +15 -17
- data/lib/rake/task_manager.rb +2 -2
- data/lib/rake/thread_pool.rb +1 -1
- data/lib/rake/version.rb +1 -1
- data/rake.gemspec +63 -6
- metadata +6 -15
- data/CONTRIBUTING.rdoc +0 -43
- data/Gemfile +0 -10
- data/Rakefile +0 -41
- data/bin/bundle +0 -105
- data/bin/console +0 -7
- data/bin/rake +0 -29
- data/bin/rdoc +0 -29
- data/bin/rubocop +0 -29
- data/bin/setup +0 -6
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 28bba290220743d84779fafd399a03e1947823e7b2842a30dd6edee71166d5ca
|
4
|
+
data.tar.gz: d0cf8c522bc622c93b79d16a36a2f9c68cec9ab0bfd9b3b599b9465f95caecc4
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: b5c11402d93c71df5f887b104825f74e4b168f25d9616e4a2ff25abed4b87e0b586bf33b43735f2b25fb6fef69e2b16af0c0594127734aae3042e88a74c1856f
|
7
|
+
data.tar.gz: 8b04e7de538e94e4ccaaaa55edd0042498529368c72c1b9953b5bfc3d916cd3fa28a60518e952f88cd6ea53ec2f99485a11b2f8e4f2102864644b3e4f626ef7d
|
data/lib/rake/application.rb
CHANGED
@@ -433,6 +433,13 @@ module Rake
|
|
433
433
|
select_tasks_to_show(options, :describe, value)
|
434
434
|
}
|
435
435
|
],
|
436
|
+
["--directory", "-C [DIRECTORY]",
|
437
|
+
"Change to DIRECTORY before doing anything.",
|
438
|
+
lambda { |value|
|
439
|
+
Dir.chdir value
|
440
|
+
@original_dir = Dir.pwd
|
441
|
+
}
|
442
|
+
],
|
436
443
|
["--dry-run", "-n",
|
437
444
|
"Do a dry run without executing actions.",
|
438
445
|
lambda { |value|
|
@@ -1,26 +1,24 @@
|
|
1
1
|
# frozen_string_literal: true
|
2
|
-
require "rake"
|
3
2
|
|
4
3
|
# Load the test files from the command line.
|
5
4
|
argv = ARGV.select do |argument|
|
6
|
-
|
7
|
-
|
8
|
-
|
9
|
-
|
10
|
-
|
11
|
-
|
12
|
-
|
13
|
-
end
|
5
|
+
case argument
|
6
|
+
when /^-/ then
|
7
|
+
argument
|
8
|
+
when /\*/ then
|
9
|
+
FileList[argument].to_a.each do |file|
|
10
|
+
require File.expand_path file
|
11
|
+
end
|
14
12
|
|
15
|
-
|
16
|
-
|
17
|
-
|
13
|
+
false
|
14
|
+
else
|
15
|
+
path = File.expand_path argument
|
18
16
|
|
19
|
-
|
20
|
-
|
21
|
-
|
22
|
-
|
23
|
-
|
17
|
+
abort "\nFile does not exist: #{path}\n\n" unless File.exist?(path)
|
18
|
+
|
19
|
+
require path
|
20
|
+
|
21
|
+
false
|
24
22
|
end
|
25
23
|
end
|
26
24
|
|
data/lib/rake/task_manager.rb
CHANGED
@@ -300,8 +300,8 @@ module Rake
|
|
300
300
|
when /^\./
|
301
301
|
source = task_name.sub(task_pattern, ext)
|
302
302
|
source == ext ? task_name.ext(ext) : source
|
303
|
-
when String
|
304
|
-
ext
|
303
|
+
when String, Symbol
|
304
|
+
ext.to_s
|
305
305
|
when Proc, Method
|
306
306
|
if ext.arity == 1
|
307
307
|
ext.call(task_name)
|
data/lib/rake/thread_pool.rb
CHANGED
@@ -1,5 +1,4 @@
|
|
1
1
|
# frozen_string_literal: true
|
2
|
-
require "set"
|
3
2
|
|
4
3
|
require "rake/promise"
|
5
4
|
|
@@ -10,6 +9,7 @@ module Rake
|
|
10
9
|
# Creates a ThreadPool object. The +thread_count+ parameter is the size
|
11
10
|
# of the pool.
|
12
11
|
def initialize(thread_count)
|
12
|
+
require "set"
|
13
13
|
@max_active_threads = [thread_count, 0].max
|
14
14
|
@threads = Set.new
|
15
15
|
@threads_mon = Monitor.new
|
data/lib/rake/version.rb
CHANGED
data/rake.gemspec
CHANGED
@@ -1,6 +1,5 @@
|
|
1
1
|
# frozen_string_literal: true
|
2
|
-
|
3
|
-
require 'rake/version'
|
2
|
+
require_relative 'lib/rake/version'
|
4
3
|
|
5
4
|
Gem::Specification.new do |s|
|
6
5
|
s.name = "rake".freeze
|
@@ -30,14 +29,72 @@ Rake has the following features:
|
|
30
29
|
"source_code_uri" => "https://github.com/ruby/rake/tree/v#{s.version}",
|
31
30
|
}
|
32
31
|
|
33
|
-
s.files =
|
34
|
-
|
32
|
+
s.files = [
|
33
|
+
"History.rdoc",
|
34
|
+
"MIT-LICENSE",
|
35
|
+
"README.rdoc",
|
36
|
+
"doc/command_line_usage.rdoc",
|
37
|
+
"doc/example/Rakefile1",
|
38
|
+
"doc/example/Rakefile2",
|
39
|
+
"doc/example/a.c",
|
40
|
+
"doc/example/b.c",
|
41
|
+
"doc/example/main.c",
|
42
|
+
"doc/glossary.rdoc",
|
43
|
+
"doc/jamis.rb",
|
44
|
+
"doc/proto_rake.rdoc",
|
45
|
+
"doc/rake.1",
|
46
|
+
"doc/rakefile.rdoc",
|
47
|
+
"doc/rational.rdoc",
|
48
|
+
"exe/rake",
|
49
|
+
"lib/rake.rb",
|
50
|
+
"lib/rake/application.rb",
|
51
|
+
"lib/rake/backtrace.rb",
|
52
|
+
"lib/rake/clean.rb",
|
53
|
+
"lib/rake/cloneable.rb",
|
54
|
+
"lib/rake/cpu_counter.rb",
|
55
|
+
"lib/rake/default_loader.rb",
|
56
|
+
"lib/rake/dsl_definition.rb",
|
57
|
+
"lib/rake/early_time.rb",
|
58
|
+
"lib/rake/ext/core.rb",
|
59
|
+
"lib/rake/ext/string.rb",
|
60
|
+
"lib/rake/file_creation_task.rb",
|
61
|
+
"lib/rake/file_list.rb",
|
62
|
+
"lib/rake/file_task.rb",
|
63
|
+
"lib/rake/file_utils.rb",
|
64
|
+
"lib/rake/file_utils_ext.rb",
|
65
|
+
"lib/rake/invocation_chain.rb",
|
66
|
+
"lib/rake/invocation_exception_mixin.rb",
|
67
|
+
"lib/rake/late_time.rb",
|
68
|
+
"lib/rake/linked_list.rb",
|
69
|
+
"lib/rake/loaders/makefile.rb",
|
70
|
+
"lib/rake/multi_task.rb",
|
71
|
+
"lib/rake/name_space.rb",
|
72
|
+
"lib/rake/packagetask.rb",
|
73
|
+
"lib/rake/phony.rb",
|
74
|
+
"lib/rake/private_reader.rb",
|
75
|
+
"lib/rake/promise.rb",
|
76
|
+
"lib/rake/pseudo_status.rb",
|
77
|
+
"lib/rake/rake_module.rb",
|
78
|
+
"lib/rake/rake_test_loader.rb",
|
79
|
+
"lib/rake/rule_recursion_overflow_error.rb",
|
80
|
+
"lib/rake/scope.rb",
|
81
|
+
"lib/rake/task.rb",
|
82
|
+
"lib/rake/task_argument_error.rb",
|
83
|
+
"lib/rake/task_arguments.rb",
|
84
|
+
"lib/rake/task_manager.rb",
|
85
|
+
"lib/rake/tasklib.rb",
|
86
|
+
"lib/rake/testtask.rb",
|
87
|
+
"lib/rake/thread_history_display.rb",
|
88
|
+
"lib/rake/thread_pool.rb",
|
89
|
+
"lib/rake/trace_output.rb",
|
90
|
+
"lib/rake/version.rb",
|
91
|
+
"lib/rake/win32.rb",
|
92
|
+
"rake.gemspec"
|
93
|
+
]
|
35
94
|
s.bindir = "exe"
|
36
95
|
s.executables = s.files.grep(%r{^exe/}) { |f| File.basename(f) }
|
37
96
|
s.require_paths = ["lib".freeze]
|
38
97
|
|
39
98
|
s.required_ruby_version = Gem::Requirement.new(">= 2.2".freeze)
|
40
|
-
s.rubygems_version = "2.6.1".freeze
|
41
|
-
s.required_rubygems_version = Gem::Requirement.new(">= 1.3.2".freeze)
|
42
99
|
s.rdoc_options = ["--main".freeze, "README.rdoc".freeze]
|
43
100
|
end
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: rake
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 13.0.
|
4
|
+
version: 13.0.4
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Hiroshi SHIBATA
|
@@ -10,7 +10,7 @@ authors:
|
|
10
10
|
autorequire:
|
11
11
|
bindir: exe
|
12
12
|
cert_chain: []
|
13
|
-
date:
|
13
|
+
date: 2021-07-06 00:00:00.000000000 Z
|
14
14
|
dependencies: []
|
15
15
|
description: |
|
16
16
|
Rake is a Make-like program implemented in Ruby. Tasks and dependencies are
|
@@ -31,18 +31,9 @@ executables:
|
|
31
31
|
extensions: []
|
32
32
|
extra_rdoc_files: []
|
33
33
|
files:
|
34
|
-
- CONTRIBUTING.rdoc
|
35
|
-
- Gemfile
|
36
34
|
- History.rdoc
|
37
35
|
- MIT-LICENSE
|
38
36
|
- README.rdoc
|
39
|
-
- Rakefile
|
40
|
-
- bin/bundle
|
41
|
-
- bin/console
|
42
|
-
- bin/rake
|
43
|
-
- bin/rdoc
|
44
|
-
- bin/rubocop
|
45
|
-
- bin/setup
|
46
37
|
- doc/command_line_usage.rdoc
|
47
38
|
- doc/example/Rakefile1
|
48
39
|
- doc/example/Rakefile2
|
@@ -105,9 +96,9 @@ licenses:
|
|
105
96
|
- MIT
|
106
97
|
metadata:
|
107
98
|
bug_tracker_uri: https://github.com/ruby/rake/issues
|
108
|
-
changelog_uri: https://github.com/ruby/rake/blob/v13.0.
|
99
|
+
changelog_uri: https://github.com/ruby/rake/blob/v13.0.4/History.rdoc
|
109
100
|
documentation_uri: https://ruby.github.io/rake
|
110
|
-
source_code_uri: https://github.com/ruby/rake/tree/v13.0.
|
101
|
+
source_code_uri: https://github.com/ruby/rake/tree/v13.0.4
|
111
102
|
post_install_message:
|
112
103
|
rdoc_options:
|
113
104
|
- "--main"
|
@@ -123,9 +114,9 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
123
114
|
requirements:
|
124
115
|
- - ">="
|
125
116
|
- !ruby/object:Gem::Version
|
126
|
-
version:
|
117
|
+
version: '0'
|
127
118
|
requirements: []
|
128
|
-
rubygems_version: 3.
|
119
|
+
rubygems_version: 3.3.0.dev
|
129
120
|
signing_key:
|
130
121
|
specification_version: 4
|
131
122
|
summary: Rake is a Make-like program implemented in Ruby
|
data/CONTRIBUTING.rdoc
DELETED
@@ -1,43 +0,0 @@
|
|
1
|
-
= Source Repository
|
2
|
-
|
3
|
-
Rake is currently hosted at github. The github web page is
|
4
|
-
https://github.com/ruby/rake . The public git clone URL is
|
5
|
-
|
6
|
-
https://github.com/ruby/rake.git
|
7
|
-
|
8
|
-
= Running the Rake Test Suite
|
9
|
-
|
10
|
-
If you wish to run the unit and functional tests that come with Rake:
|
11
|
-
|
12
|
-
* +cd+ into the top project directory of rake.
|
13
|
-
* Install gem dependency using bundler:
|
14
|
-
|
15
|
-
$ bundle install # Install bundler, minitest and rdoc
|
16
|
-
|
17
|
-
* Run the test suite
|
18
|
-
|
19
|
-
$ rake
|
20
|
-
|
21
|
-
= Rubocop
|
22
|
-
|
23
|
-
Rake uses Rubocop to enforce a consistent style on new changes being
|
24
|
-
proposed. You can check your code with Rubocop using:
|
25
|
-
|
26
|
-
$ ./bin/rubocop
|
27
|
-
|
28
|
-
= Issues and Bug Reports
|
29
|
-
|
30
|
-
Feel free to submit commits or feature requests. If you send a patch,
|
31
|
-
remember to update the corresponding unit tests. In fact, I prefer
|
32
|
-
new feature to be submitted in the form of new unit tests.
|
33
|
-
|
34
|
-
For other information, feel free to ask on the ruby-talk mailing list.
|
35
|
-
|
36
|
-
If you have found a bug in rake please try with the latest version of rake
|
37
|
-
before filing an issue. Also check History.rdoc for bug fixes that may have
|
38
|
-
addressed your issue.
|
39
|
-
|
40
|
-
When submitting pull requests please check the rake Travis-CI page for test
|
41
|
-
failures:
|
42
|
-
|
43
|
-
https://travis-ci.org/ruby/rake
|
data/Gemfile
DELETED
data/Rakefile
DELETED
@@ -1,41 +0,0 @@
|
|
1
|
-
# Rakefile for rake -*- ruby -*-
|
2
|
-
|
3
|
-
# Copyright 2003, 2004, 2005 by Jim Weirich (jim@weirichhouse.org)
|
4
|
-
# All rights reserved.
|
5
|
-
|
6
|
-
# This file may be distributed under an MIT style license. See
|
7
|
-
# MIT-LICENSE for details.
|
8
|
-
|
9
|
-
lib = File.expand_path("../lib", __FILE__)
|
10
|
-
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
|
11
|
-
|
12
|
-
begin
|
13
|
-
require "bundler/gem_tasks"
|
14
|
-
rescue LoadError
|
15
|
-
end
|
16
|
-
|
17
|
-
require "rake/testtask"
|
18
|
-
Rake::TestTask.new(:test) do |t|
|
19
|
-
t.libs << "test"
|
20
|
-
t.verbose = true
|
21
|
-
t.test_files = FileList["test/**/test_*.rb"]
|
22
|
-
end
|
23
|
-
|
24
|
-
require "rdoc/task"
|
25
|
-
RDoc::Task.new do |doc|
|
26
|
-
doc.main = "README.rdoc"
|
27
|
-
doc.title = "Rake -- Ruby Make"
|
28
|
-
doc.rdoc_files = FileList.new %w[lib MIT-LICENSE doc/**/*.rdoc *.rdoc]
|
29
|
-
doc.rdoc_dir = "html"
|
30
|
-
end
|
31
|
-
|
32
|
-
task ghpages: :rdoc do
|
33
|
-
%x[git checkout gh-pages]
|
34
|
-
require "fileutils"
|
35
|
-
FileUtils.rm_rf "/tmp/html"
|
36
|
-
FileUtils.mv "html", "/tmp"
|
37
|
-
FileUtils.rm_rf "*"
|
38
|
-
FileUtils.cp_r Dir.glob("/tmp/html/*"), "."
|
39
|
-
end
|
40
|
-
|
41
|
-
task default: :test
|
data/bin/bundle
DELETED
@@ -1,105 +0,0 @@
|
|
1
|
-
#!/usr/bin/env ruby
|
2
|
-
# frozen_string_literal: true
|
3
|
-
|
4
|
-
#
|
5
|
-
# This file was generated by Bundler.
|
6
|
-
#
|
7
|
-
# The application 'bundle' is installed as part of a gem, and
|
8
|
-
# this file is here to facilitate running it.
|
9
|
-
#
|
10
|
-
|
11
|
-
require "rubygems"
|
12
|
-
|
13
|
-
m = Module.new do
|
14
|
-
module_function
|
15
|
-
|
16
|
-
def invoked_as_script?
|
17
|
-
File.expand_path($0) == File.expand_path(__FILE__)
|
18
|
-
end
|
19
|
-
|
20
|
-
def env_var_version
|
21
|
-
ENV["BUNDLER_VERSION"]
|
22
|
-
end
|
23
|
-
|
24
|
-
def cli_arg_version
|
25
|
-
return unless invoked_as_script? # don't want to hijack other binstubs
|
26
|
-
return unless "update".start_with?(ARGV.first || " ") # must be running `bundle update`
|
27
|
-
bundler_version = nil
|
28
|
-
update_index = nil
|
29
|
-
ARGV.each_with_index do |a, i|
|
30
|
-
if update_index && update_index.succ == i && a =~ Gem::Version::ANCHORED_VERSION_PATTERN
|
31
|
-
bundler_version = a
|
32
|
-
end
|
33
|
-
next unless a =~ /\A--bundler(?:[= ](#{Gem::Version::VERSION_PATTERN}))?\z/
|
34
|
-
bundler_version = $1 || ">= 0.a"
|
35
|
-
update_index = i
|
36
|
-
end
|
37
|
-
bundler_version
|
38
|
-
end
|
39
|
-
|
40
|
-
def gemfile
|
41
|
-
gemfile = ENV["BUNDLE_GEMFILE"]
|
42
|
-
return gemfile if gemfile && !gemfile.empty?
|
43
|
-
|
44
|
-
File.expand_path("../../Gemfile", __FILE__)
|
45
|
-
end
|
46
|
-
|
47
|
-
def lockfile
|
48
|
-
lockfile =
|
49
|
-
case File.basename(gemfile)
|
50
|
-
when "gems.rb" then gemfile.sub(/\.rb$/, gemfile)
|
51
|
-
else "#{gemfile}.lock"
|
52
|
-
end
|
53
|
-
File.expand_path(lockfile)
|
54
|
-
end
|
55
|
-
|
56
|
-
def lockfile_version
|
57
|
-
return unless File.file?(lockfile)
|
58
|
-
lockfile_contents = File.read(lockfile)
|
59
|
-
return unless lockfile_contents =~ /\n\nBUNDLED WITH\n\s{2,}(#{Gem::Version::VERSION_PATTERN})\n/
|
60
|
-
Regexp.last_match(1)
|
61
|
-
end
|
62
|
-
|
63
|
-
def bundler_version
|
64
|
-
@bundler_version ||= begin
|
65
|
-
env_var_version || cli_arg_version ||
|
66
|
-
lockfile_version || "#{Gem::Requirement.default}.a"
|
67
|
-
end
|
68
|
-
end
|
69
|
-
|
70
|
-
def load_bundler!
|
71
|
-
ENV["BUNDLE_GEMFILE"] ||= gemfile
|
72
|
-
|
73
|
-
# must dup string for RG < 1.8 compatibility
|
74
|
-
activate_bundler(bundler_version.dup)
|
75
|
-
end
|
76
|
-
|
77
|
-
def activate_bundler(bundler_version)
|
78
|
-
if Gem::Version.correct?(bundler_version) && Gem::Version.new(bundler_version).release < Gem::Version.new("2.0")
|
79
|
-
bundler_version = "< 2"
|
80
|
-
end
|
81
|
-
gem_error = activation_error_handling do
|
82
|
-
gem "bundler", bundler_version
|
83
|
-
end
|
84
|
-
return if gem_error.nil?
|
85
|
-
require_error = activation_error_handling do
|
86
|
-
require "bundler/version"
|
87
|
-
end
|
88
|
-
return if require_error.nil? && Gem::Requirement.new(bundler_version).satisfied_by?(Gem::Version.new(Bundler::VERSION))
|
89
|
-
warn "Activating bundler (#{bundler_version}) failed:\n#{gem_error.message}\n\nTo install the version of bundler this project requires, run `gem install bundler -v '#{bundler_version}'`"
|
90
|
-
exit 42
|
91
|
-
end
|
92
|
-
|
93
|
-
def activation_error_handling
|
94
|
-
yield
|
95
|
-
nil
|
96
|
-
rescue StandardError, LoadError => e
|
97
|
-
e
|
98
|
-
end
|
99
|
-
end
|
100
|
-
|
101
|
-
m.load_bundler!
|
102
|
-
|
103
|
-
if m.invoked_as_script?
|
104
|
-
load Gem.bin_path("bundler", "bundle")
|
105
|
-
end
|
data/bin/console
DELETED
data/bin/rake
DELETED
@@ -1,29 +0,0 @@
|
|
1
|
-
#!/usr/bin/env ruby
|
2
|
-
# frozen_string_literal: true
|
3
|
-
|
4
|
-
#
|
5
|
-
# This file was generated by Bundler.
|
6
|
-
#
|
7
|
-
# The application 'rake' is installed as part of a gem, and
|
8
|
-
# this file is here to facilitate running it.
|
9
|
-
#
|
10
|
-
|
11
|
-
require "pathname"
|
12
|
-
ENV["BUNDLE_GEMFILE"] ||= File.expand_path("../../Gemfile",
|
13
|
-
Pathname.new(__FILE__).realpath)
|
14
|
-
|
15
|
-
bundle_binstub = File.expand_path("../bundle", __FILE__)
|
16
|
-
|
17
|
-
if File.file?(bundle_binstub)
|
18
|
-
if File.read(bundle_binstub, 300) =~ /This file was generated by Bundler/
|
19
|
-
load(bundle_binstub)
|
20
|
-
else
|
21
|
-
abort("Your `bin/bundle` was not generated by Bundler, so this binstub cannot run.
|
22
|
-
Replace `bin/bundle` by running `bundle binstubs bundler --force`, then run this command again.")
|
23
|
-
end
|
24
|
-
end
|
25
|
-
|
26
|
-
require "rubygems"
|
27
|
-
require "bundler/setup"
|
28
|
-
|
29
|
-
load Gem.bin_path("rake", "rake")
|
data/bin/rdoc
DELETED
@@ -1,29 +0,0 @@
|
|
1
|
-
#!/usr/bin/env ruby
|
2
|
-
# frozen_string_literal: true
|
3
|
-
|
4
|
-
#
|
5
|
-
# This file was generated by Bundler.
|
6
|
-
#
|
7
|
-
# The application 'rdoc' is installed as part of a gem, and
|
8
|
-
# this file is here to facilitate running it.
|
9
|
-
#
|
10
|
-
|
11
|
-
require "pathname"
|
12
|
-
ENV["BUNDLE_GEMFILE"] ||= File.expand_path("../../Gemfile",
|
13
|
-
Pathname.new(__FILE__).realpath)
|
14
|
-
|
15
|
-
bundle_binstub = File.expand_path("../bundle", __FILE__)
|
16
|
-
|
17
|
-
if File.file?(bundle_binstub)
|
18
|
-
if File.read(bundle_binstub, 300) =~ /This file was generated by Bundler/
|
19
|
-
load(bundle_binstub)
|
20
|
-
else
|
21
|
-
abort("Your `bin/bundle` was not generated by Bundler, so this binstub cannot run.
|
22
|
-
Replace `bin/bundle` by running `bundle binstubs bundler --force`, then run this command again.")
|
23
|
-
end
|
24
|
-
end
|
25
|
-
|
26
|
-
require "rubygems"
|
27
|
-
require "bundler/setup"
|
28
|
-
|
29
|
-
load Gem.bin_path("rdoc", "rdoc")
|
data/bin/rubocop
DELETED
@@ -1,29 +0,0 @@
|
|
1
|
-
#!/usr/bin/env ruby
|
2
|
-
# frozen_string_literal: true
|
3
|
-
|
4
|
-
#
|
5
|
-
# This file was generated by Bundler.
|
6
|
-
#
|
7
|
-
# The application 'rubocop' is installed as part of a gem, and
|
8
|
-
# this file is here to facilitate running it.
|
9
|
-
#
|
10
|
-
|
11
|
-
require "pathname"
|
12
|
-
ENV["BUNDLE_GEMFILE"] ||= File.expand_path("../../Gemfile",
|
13
|
-
Pathname.new(__FILE__).realpath)
|
14
|
-
|
15
|
-
bundle_binstub = File.expand_path("../bundle", __FILE__)
|
16
|
-
|
17
|
-
if File.file?(bundle_binstub)
|
18
|
-
if File.read(bundle_binstub, 300) =~ /This file was generated by Bundler/
|
19
|
-
load(bundle_binstub)
|
20
|
-
else
|
21
|
-
abort("Your `bin/bundle` was not generated by Bundler, so this binstub cannot run.
|
22
|
-
Replace `bin/bundle` by running `bundle binstubs bundler --force`, then run this command again.")
|
23
|
-
end
|
24
|
-
end
|
25
|
-
|
26
|
-
require "rubygems"
|
27
|
-
require "bundler/setup"
|
28
|
-
|
29
|
-
load Gem.bin_path("rubocop", "rubocop")
|