rubycritic 4.2.1 → 4.2.2
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +6 -1
- data/ROADMAP.md +2 -2
- data/lib/rubycritic/generators/html/templates/overview.html.erb +1 -1
- data/lib/rubycritic/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 424498e508cb543906927834dd6226231c3602bf45a82ff7a4e0bf2cf14370db
|
4
|
+
data.tar.gz: ab4853611bb576d549e600e211a5293104b7833f9829e4512983a8e6ed5af4ea
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 18b1c8522388ab7faf98637915e5f5b198fc49a762f88727b73c3915dedb38d8099346885206ae33368274abd92d2eb7fb2f93914d6e0fb9084cc7fed50c8698
|
7
|
+
data.tar.gz: 259b6c142432a85d6724d650f4868977c81c71978a9811b4fa337fce3b48aaf623bf42e64e3162a2511262fd6135eab4cff3441b6a3d9c9260bc911accfcd91e
|
data/CHANGELOG.md
CHANGED
@@ -1,4 +1,9 @@
|
|
1
|
-
# master [(unreleased)](https://github.com/whitesmith/rubycritic/compare/v4.2.
|
1
|
+
# master [(unreleased)](https://github.com/whitesmith/rubycritic/compare/v4.2.2...master)
|
2
|
+
|
3
|
+
# v4.2.2 / 2019-11-12 [(commits)](https://github.com/whitesmith/rubycritic/compare/v4.2.1...v4.2.2)
|
4
|
+
|
5
|
+
* [BUGFIX] Fix deprecation warnings related to Minitest 6 (by [@jsantos][])
|
6
|
+
* [BUGFIX] Expand Churn vs. Complexity chart to full-width on small screen (by [@teohm][])
|
2
7
|
|
3
8
|
# v4.2.1 / 2019-10-29 [(commits)](https://github.com/whitesmith/rubycritic/compare/v4.2.0...v4.2.1)
|
4
9
|
|
data/ROADMAP.md
CHANGED
@@ -12,7 +12,7 @@ These are more nice-to-haves than promises. We can always dream. But this is wha
|
|
12
12
|
|
13
13
|
Finally, this score is translated to a grade like [this](https://github.com/whitesmith/rubycritic/blob/43005e7b76dd0c648c7715133e42afdd6ea9a065/lib/rubycritic/core/rating.rb), based off of a [Code Climate blog post](http://blog.codeclimate.com/blog/2012/10/17/7-ways-to-decompose-fat-activerecord-models/#value-objects).
|
14
14
|
|
15
|
-
- [
|
15
|
+
- [x] Implement a project rating, ala Code Climate.
|
16
16
|
|
17
17
|
- [ ] Explain ratings. What's the difference between an A and a B? Bryan Helmkamp, the creator of Code Climate, wrote [a great essay on the subject](https://gist.github.com/brynary/21369b5892525e1bd102). #63
|
18
18
|
|
@@ -33,7 +33,7 @@ These are more nice-to-haves than promises. We can always dream. But this is wha
|
|
33
33
|
|
34
34
|
- [ ] Integrate other gems, like:
|
35
35
|
|
36
|
-
- [
|
36
|
+
- [x] [Simplecov](https://github.com/colszowka/simplecov) to provide code coverage. #319
|
37
37
|
|
38
38
|
- [ ] [Rubocop](https://github.com/bbatsov/rubocop/) to provide style issues
|
39
39
|
|
@@ -18,7 +18,7 @@
|
|
18
18
|
<!--End Grade Wrapper-->
|
19
19
|
|
20
20
|
<!--Churn vs Complexity graph-->
|
21
|
-
<div class="col-xs-
|
21
|
+
<div class="col-xs-12 col-sm-7 col-md-6 col-lg-8">
|
22
22
|
<div class="Graph_Cards fadeIn">
|
23
23
|
<% if Config.source_control_present? %>
|
24
24
|
<div id="churn-vs-complexity-graph-container" class="chart-container"></div>
|
data/lib/rubycritic/version.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: rubycritic
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 4.2.
|
4
|
+
version: 4.2.2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Guilherme Simoes
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2019-
|
11
|
+
date: 2019-11-12 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: flay
|