boxt_ruby_style_guide 7.4.0 → 7.5.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/VERSION +1 -1
- data/lib/tasks/lint.rake +1 -2
- metadata +12 -6
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 6c98e2c24a98ee1a1b71ff68d8ac9e1a71fc828e7dd426fdca7cdb7d1d46bd95
|
|
4
|
+
data.tar.gz: d391b2f458db7d6c95e85674ccbacbd44c1b75e4b2cae553d42885e44797e1d2
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: c682a374a5084e2abc80665481fcd9df82f99b301064916153d5d6dd8ed587d226f83698627ab804a98e449fffe0d78fa16e8e7ccfcd0f8c60a13add8196b545
|
|
7
|
+
data.tar.gz: '09e6a7393ba970d72171d6e85660a4482594f54de05d9f63ae4248aca894992110073f20bfb9fe9b9feab3c8d2d31399e687fa935b57a6a073e1c4807da9d31a'
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
7.
|
|
1
|
+
7.5.0
|
data/lib/tasks/lint.rake
CHANGED
|
@@ -53,8 +53,7 @@ namespace :lint do
|
|
|
53
53
|
def diff_file_paths
|
|
54
54
|
base_branch = ENV.fetch("RUBOCOP_LINT_BASE", BASE_BRANCH)
|
|
55
55
|
command = <<~BASH
|
|
56
|
-
git diff
|
|
57
|
-
| egrep '#{GREP_PATTERN}'
|
|
56
|
+
git diff --name-only #{base_branch} HEAD | egrep '#{GREP_PATTERN}'
|
|
58
57
|
BASH
|
|
59
58
|
file_paths = `#{command}`
|
|
60
59
|
file_paths.gsub(/\n|\r/, " ")
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: boxt_ruby_style_guide
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 7.
|
|
4
|
+
version: 7.5.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Boxt
|
|
8
|
-
autorequire:
|
|
8
|
+
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2020-10-
|
|
11
|
+
date: 2020-10-03 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: rubocop
|
|
@@ -31,6 +31,9 @@ dependencies:
|
|
|
31
31
|
- - ">"
|
|
32
32
|
- !ruby/object:Gem::Version
|
|
33
33
|
version: '5'
|
|
34
|
+
- - "<"
|
|
35
|
+
- !ruby/object:Gem::Version
|
|
36
|
+
version: '7'
|
|
34
37
|
type: :development
|
|
35
38
|
prerelease: false
|
|
36
39
|
version_requirements: !ruby/object:Gem::Requirement
|
|
@@ -38,6 +41,9 @@ dependencies:
|
|
|
38
41
|
- - ">"
|
|
39
42
|
- !ruby/object:Gem::Version
|
|
40
43
|
version: '5'
|
|
44
|
+
- - "<"
|
|
45
|
+
- !ruby/object:Gem::Version
|
|
46
|
+
version: '7'
|
|
41
47
|
- !ruby/object:Gem::Dependency
|
|
42
48
|
name: rubocop-faker
|
|
43
49
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -175,7 +181,7 @@ homepage: https://github.com/boxt/ruby-style-guide
|
|
|
175
181
|
licenses:
|
|
176
182
|
- MIT
|
|
177
183
|
metadata: {}
|
|
178
|
-
post_install_message:
|
|
184
|
+
post_install_message:
|
|
179
185
|
rdoc_options: []
|
|
180
186
|
require_paths:
|
|
181
187
|
- lib
|
|
@@ -190,8 +196,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
190
196
|
- !ruby/object:Gem::Version
|
|
191
197
|
version: '0'
|
|
192
198
|
requirements: []
|
|
193
|
-
rubygems_version: 3.1.
|
|
194
|
-
signing_key:
|
|
199
|
+
rubygems_version: 3.1.2
|
|
200
|
+
signing_key:
|
|
195
201
|
specification_version: 4
|
|
196
202
|
summary: Ruby styleguide info for the BOXT Ruby projects
|
|
197
203
|
test_files: []
|