rails_stats 2.0.0 → 2.0.1

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
2
  SHA256:
3
- metadata.gz: 06f66a7f398a3206774d6dc5b80ce346e8c518f3469c386da5b23e2d4ebdc63e
4
- data.tar.gz: a3628487b836738a60f55facfbb79d5617f641391e30ac0488e294a995b9332e
3
+ metadata.gz: 488bc4eaefb566a4ff6141f892461fafa826bfd1a6760e6ff5f95f09d1fc58b7
4
+ data.tar.gz: c563281ab24f01664eaf990f47075b89dfc2da90f3a84e344c31351c6222e650
5
5
  SHA512:
6
- metadata.gz: 03d2f39eeace55a4580f7222c1c50f53bfd2110459f69be3a976889d836f4477e7ba3d9e4969818270529a457a88c9929b2346cc81effc446a9c71a239ee9093
7
- data.tar.gz: 75d02d452ef3f44b8a429bb80bd07e67bece730d5de1e60c25b4cd215a66deb8d7ebbe6134d305873856f1793488ba1bde41778204edc3e7a60515c3093c1474
6
+ metadata.gz: 80e833d9a50ce0281774bd62a0ac3b5dc7bba1cd1750a36c48df294e29e0c6823b71e9552520a40dd7f219b007b82dd75ea764a766193d5033ca8443197bc538
7
+ data.tar.gz: 785d808f4d77dd1e3d0ad65b1ca08368ebb584542b6af80afc66e44fe0915180258a5d4a90d025f62b11e22450832a969876748b680d17bee0513087d5fdc33e
data/CHANGELOG.md CHANGED
@@ -2,6 +2,10 @@
2
2
 
3
3
  *
4
4
 
5
+ # v2.0.1 ([commits](https://github.com/fastruby/rails_stats/compare/v2.0.0...v2.0.1))
6
+
7
+ * [BUGFIX: Remove conditional byebug](https://github.com/fastruby/rails_stats/pull/29)
8
+
5
9
  # v2.0.0 ([commits](https://github.com/fastruby/rails_stats/compare/v1.0.2...v2.0.0))
6
10
 
7
11
  * [FEATURE: Add basic coverage to RailsStats::CodeStatistics#to_s](https://github.com/fastruby/rails_stats/pull/10)
@@ -36,8 +36,6 @@ module RailsStats
36
36
  m_over_c = (statistics.methods / statistics.classes) rescue m_over_c = 0
37
37
  loc_over_m = (statistics.code_lines / statistics.methods) - 2 rescue loc_over_m = 0
38
38
 
39
- require 'byebug'; byebug if statistics.nil?
40
-
41
39
  puts "| #{name.ljust(20)} " \
42
40
  "| #{statistics.files_total.to_s.rjust(7)} " \
43
41
  "| #{statistics.lines.to_s.rjust(7)} " \
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module RailsStats
4
- VERSION = "2.0.0"
4
+ VERSION = "2.0.1"
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: rails_stats
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.0.0
4
+ version: 2.0.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Brian Leonard