quality 34.0.2 → 35.0.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
- SHA1:
3
- metadata.gz: a0e1de58b13c1ae8d89aee56973004ad26733c61
4
- data.tar.gz: 40bac0696382354bf9972bf5d5d528923a2996d2
2
+ SHA256:
3
+ metadata.gz: 9c743e2bfaea0403c625360685ddf98930d4cfb065ee8edf85ee3c6ceec53d37
4
+ data.tar.gz: ee759227dfab07db19794b032a7c934d943777697a5aed9e6f9c06d63fb252db
5
5
  SHA512:
6
- metadata.gz: cc502749cd123018fd0a42ef6fc31354f3dcea85ba84cdcd5e08b66837aa72184c5c797ed4bbf8d86c70f8610c7e32c0d4af2c196c16042c34e9f6c2664d7f06
7
- data.tar.gz: 8768b3e10e21089313358975096da9d2a2845181732e7b9923bc63ec5b860911d3d04d60988b42c40c52d20a2b77195a27aa737f9c056073d05e292575b4f57d
6
+ metadata.gz: 59442c083614d89b11cc26baf81a0d489fa0b5957553ce26a3d96543c377ed8f6dfae37470dc3dc8b4ab80eaf8dc6f4065dfd2a9333d3e4835a5253ee103f09f
7
+ data.tar.gz: b5d185ff4400105158d6255990bc2b920c59042dddb72d7dd3ba42b8aa0cacbc3a0974123ab0e19f69f9f517f9d33ce2b9a2235d0569e79849bc044a4fa74310
data/README.md CHANGED
@@ -96,6 +96,16 @@ rake ratchet
96
96
 
97
97
  See [CONFIGURATION.md](CONFIGURATION.md)
98
98
 
99
+ ## Pronto
100
+
101
+ To help better understand which warnings came from your current set of
102
+ changes, consider using
103
+ [Pronto](https://github.com/prontolabs/pronto), which provides
104
+ incremental reporting from different quality tools, and can add
105
+ comments directly to PR reviews. You can see an example in this
106
+ project's
107
+ [Rakefile](https://github.com/apiology/quality/blob/master/Rakefile)
108
+
99
109
  ## Vendored files
100
110
 
101
111
  Quality uses GitHub's [linguist](https://github.com/github/linguist)
@@ -4,5 +4,5 @@
4
4
  # reek, flog, flay and rubocop and makes sure your numbers don't get
5
5
  # any worse over time.
6
6
  module Quality
7
- VERSION = '34.0.2'
7
+ VERSION = '35.0.0'
8
8
  end
@@ -11,24 +11,19 @@ Gem::Specification.new do |s|
11
11
  s.version = Quality::VERSION
12
12
 
13
13
  s.authors = ['Vince Broz']
14
- # s.default_executable = %q{quality}
15
14
  s.description =
16
15
  "Quality is a tool that runs quality checks on your code using " \
17
16
  "community tools, and makes sure your numbers don't get any " \
18
17
  "worse over time. Just add 'rake quality' as part of your " \
19
18
  "Continuous Integration"
20
19
  s.email = ['vince@broz.cc']
21
- # s.executables = ["quality"]
22
- # s.extra_rdoc_files = ["CHANGELOG", "License.txt"]
23
20
  s.license = 'MIT'
24
21
  s.files = Dir['CODE_OF_CONDUCT.md', 'LICENSE.txt', 'README.md',
25
22
  '{lib}/quality.rb',
26
23
  '{lib}/quality/**/*.rb',
27
24
  'quality.gemspec']
28
- # s.rdoc_options = ["--main", "README.md"]
29
25
  s.require_paths = ['lib']
30
26
  s.homepage = 'http://github.com/apiology/quality'
31
- # s.rubyforge_project = %q{quality}
32
27
  s.rubygems_version = '1.3.6'
33
28
  s.summary = 'Code quality tools for Ruby'
34
29
 
@@ -48,7 +43,7 @@ Gem::Specification.new do |s|
48
43
  #
49
44
  # https://github.com/bbatsov/rubocop#installation
50
45
  s.add_runtime_dependency('mdl')
51
- s.add_runtime_dependency('rubocop', '~> 0.70.0')
46
+ s.add_runtime_dependency('rubocop', '~> 0.77.0')
52
47
  # 1.19.0 was a RuboCop 0.51.0 compatibility release
53
48
  s.add_runtime_dependency('bigfiles', ['>= 0.1'])
54
49
  s.add_runtime_dependency('brakeman')
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: quality
3
3
  version: !ruby/object:Gem::Version
4
- version: 34.0.2
4
+ version: 35.0.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Vince Broz
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2019-05-29 00:00:00.000000000 Z
11
+ date: 2019-12-01 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: activesupport
@@ -148,14 +148,14 @@ dependencies:
148
148
  requirements:
149
149
  - - "~>"
150
150
  - !ruby/object:Gem::Version
151
- version: 0.70.0
151
+ version: 0.77.0
152
152
  type: :runtime
153
153
  prerelease: false
154
154
  version_requirements: !ruby/object:Gem::Requirement
155
155
  requirements:
156
156
  - - "~>"
157
157
  - !ruby/object:Gem::Version
158
- version: 0.70.0
158
+ version: 0.77.0
159
159
  - !ruby/object:Gem::Dependency
160
160
  name: bigfiles
161
161
  requirement: !ruby/object:Gem::Requirement
@@ -446,8 +446,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
446
446
  - !ruby/object:Gem::Version
447
447
  version: '0'
448
448
  requirements: []
449
- rubyforge_project:
450
- rubygems_version: 2.5.2.3
449
+ rubygems_version: 3.0.3
451
450
  signing_key:
452
451
  specification_version: 4
453
452
  summary: Code quality tools for Ruby