thanx-style 0.0.28 → 0.0.29
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/bin/thanx-rubocop +2 -3
- data/lib/thanx/style/version.rb +1 -1
- metadata +7 -6
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: c505e9aba2da7daa103731b72d05b3434da51429d2b49c0409f4224692e72a8f
|
|
4
|
+
data.tar.gz: f55a20599f5bf2dd89d8796089e076faccd2bd412d5c2f70fcfcf568df339fdd
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: f9c2c3bad3de30da39034dea9487696bd711e1fbcfd6f8e477d60ed6c07149100b9e9d967688c3f653da10ae6a5f22986e9b4837faff3469463edf7be0b35ebf
|
|
7
|
+
data.tar.gz: 8c90a68b33a1e3889a68911d914aafcb778a520e2a938cb770b0a424a388a701b9d81e2dac3aa8b3c4289b6e390945d2e128c7886c370419edea212184596a02
|
data/bin/thanx-rubocop
CHANGED
|
@@ -7,12 +7,11 @@ rescue LoadError
|
|
|
7
7
|
exit(-1)
|
|
8
8
|
end
|
|
9
9
|
|
|
10
|
-
|
|
11
|
-
formatter += '/lib/rubocop/formatter/junit_formatter.rb'
|
|
10
|
+
has_formatter = Gem::Specification.find_all_by_name('rubocop-junit-formatter').any?
|
|
12
11
|
|
|
13
12
|
exit system <<~COMMAND
|
|
14
13
|
bundle exec rubocop \
|
|
15
|
-
--require
|
|
14
|
+
#{has_formatter ? '--require $(bundle show rubocop-junit-formatter)/lib/rubocop/formatter/junit_formatter.rb' : ''} \
|
|
16
15
|
--format RuboCop::Formatter::JUnitFormatter \
|
|
17
16
|
--out test-results/rubocop/results.xml \
|
|
18
17
|
--format progress \
|
data/lib/thanx/style/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: thanx-style
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.0.
|
|
4
|
+
version: 0.0.29
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Eng @ Thanx
|
|
8
|
-
autorequire:
|
|
8
|
+
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2021-04-
|
|
11
|
+
date: 2021-04-03 00:00:00.000000000 Z
|
|
12
12
|
dependencies: []
|
|
13
13
|
description: |
|
|
14
14
|
Provides Ruby, Rails, and RSpec rubocop rules. Also provides helpers for
|
|
@@ -39,7 +39,7 @@ homepage: https://github.com/thanx/style-guide
|
|
|
39
39
|
licenses:
|
|
40
40
|
- MIT
|
|
41
41
|
metadata: {}
|
|
42
|
-
post_install_message:
|
|
42
|
+
post_install_message:
|
|
43
43
|
rdoc_options: []
|
|
44
44
|
require_paths:
|
|
45
45
|
- lib
|
|
@@ -54,8 +54,9 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
54
54
|
- !ruby/object:Gem::Version
|
|
55
55
|
version: '0'
|
|
56
56
|
requirements: []
|
|
57
|
-
|
|
58
|
-
|
|
57
|
+
rubyforge_project:
|
|
58
|
+
rubygems_version: 2.7.3
|
|
59
|
+
signing_key:
|
|
59
60
|
specification_version: 4
|
|
60
61
|
summary: Quick install of ruby Thanx code style rules
|
|
61
62
|
test_files: []
|