lono 7.0.3 → 7.0.4
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +3 -0
- data/lib/lono/inspector/summary.rb +2 -1
- data/lib/lono/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: 51a04aa19c67011e6f32ba9e032f439d281820a97e2ad41c6187aa4aa55971be
|
4
|
+
data.tar.gz: ad2e51a8917fb855e6e7e5cbf230b3445f3d0a1bd9bae478c78189a4ac6b14fe
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 01caf3e4f07a635acffb67a8a437b6714af1bace864f5ddf016b49aecef0e90b2c5fe387e693adc5e5f91fcea34b7ee8428c9bd2f39ea27779a578ea812c51b8
|
7
|
+
data.tar.gz: 539801feb80ed5fc8e8fe8cb97b012ef9e5fbd7bb172497380a7808abcbb99def14b0ff221c6470ca3fcf9713f41ec3829e9df26fd74ea126b98baa95edc8490
|
data/CHANGELOG.md
CHANGED
@@ -3,6 +3,9 @@
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
4
4
|
This project *tries* to adhere to [Semantic Versioning](http://semver.org/), even before v1.0.
|
5
5
|
|
6
|
+
## [7.0.4]
|
7
|
+
- #40 fix lono summary total
|
8
|
+
|
6
9
|
## [7.0.3]
|
7
10
|
- #39 improve param parser. allow surrounding quotes
|
8
11
|
|
@@ -79,7 +79,8 @@ module Lono::Inspector
|
|
79
79
|
type, count = a
|
80
80
|
printf "%3s %s\n", count, type
|
81
81
|
end
|
82
|
-
|
82
|
+
total = types.inject(0) { |sum,(type,count)| sum += count }
|
83
|
+
printf "%3s %s\n", total, "Total"
|
83
84
|
end
|
84
85
|
|
85
86
|
def output_template
|
data/lib/lono/version.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: lono
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 7.0.
|
4
|
+
version: 7.0.4
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Tung Nguyen
|
8
8
|
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date: 2020-01-
|
11
|
+
date: 2020-01-27 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: activesupport
|