lite-statistics 1.0.2 → 1.1.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.rubocop.yml +15 -3
- data/.travis.yml +1 -0
- data/CHANGELOG.md +22 -0
- data/Gemfile.lock +82 -69
- data/README.md +2 -2
- data/benchmarks/base.rb +3 -3
- data/benchmarks/descriptive-statistics.rb +3 -3
- data/benchmarks/statistica.rb +4 -4
- data/docs/descriptive/SUMMARY.md +3 -3
- data/lib/generators/lite/statistics/install_generator.rb +1 -1
- data/lib/lite/statistics.rb +1 -3
- data/lib/lite/statistics/configuration.rb +14 -8
- data/lib/lite/statistics/descriptive.rb +9 -9
- data/lib/lite/statistics/enumerable.rb +21 -17
- data/lib/lite/statistics/version.rb +1 -1
- data/lite-statistics.gemspec +1 -0
- metadata +21 -7
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: ae8256539084cceb1bc452eb98e855081ea4d58fa3f24c0e3c57cda46977ac21
|
4
|
+
data.tar.gz: c120fe0ba7a3e2a6f0ca82f828d091f0d5b3f0e88e048c840f1ebd21d304d20d
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 2161327f4f4a6890de8fefcd46877dc13a53635d192801b7d166d84816ae5dd62110c17fc4a0b1d7fcce4634a2d086c059f8bc9fc8e2c92d6b936ed9bc7f4b5f
|
7
|
+
data.tar.gz: b3fa5ca4e4b70dae02ec856895475c464b7c6b9655ae22edbb5eee31c0ddd8998d750b948771305ad8df9d1dfce42a0d380c139d160d621a2e3ec4e6c25f73d7
|
data/.rubocop.yml
CHANGED
@@ -1,12 +1,16 @@
|
|
1
1
|
require:
|
2
2
|
- rubocop-performance
|
3
|
+
- rubocop-rake
|
3
4
|
- rubocop-rspec
|
4
5
|
AllCops:
|
5
|
-
TargetRubyVersion: 2.
|
6
|
+
TargetRubyVersion: 2.7
|
7
|
+
NewCops: enable
|
6
8
|
DisplayCopNames: true
|
7
9
|
DisplayStyleGuide: true
|
8
|
-
|
9
|
-
|
10
|
+
Gemspec/RequiredRubyVersion:
|
11
|
+
Enabled: false
|
12
|
+
Layout/EmptyLinesAroundAttributeAccessor:
|
13
|
+
Enabled: true
|
10
14
|
Layout/EmptyLinesAroundBlockBody:
|
11
15
|
Exclude:
|
12
16
|
- 'spec/**/**/*'
|
@@ -14,6 +18,14 @@ Layout/EmptyLinesAroundClassBody:
|
|
14
18
|
EnforcedStyle: empty_lines_except_namespace
|
15
19
|
Layout/EmptyLinesAroundModuleBody:
|
16
20
|
EnforcedStyle: empty_lines_except_namespace
|
21
|
+
Layout/LineLength:
|
22
|
+
Max: 100
|
23
|
+
Layout/SpaceAroundMethodCallOperator:
|
24
|
+
Enabled: true
|
25
|
+
Lint/RaiseException:
|
26
|
+
Enabled: true
|
27
|
+
Lint/StructNewOverride:
|
28
|
+
Enabled: true
|
17
29
|
Metrics/BlockLength:
|
18
30
|
Enabled: false
|
19
31
|
Metrics/ClassLength:
|
data/.travis.yml
CHANGED
data/CHANGELOG.md
CHANGED
@@ -6,6 +6,28 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
6
6
|
|
7
7
|
## [Unreleased]
|
8
8
|
|
9
|
+
## [1.1.1] - 2019-07-05
|
10
|
+
### Changed
|
11
|
+
- Linter fixes
|
12
|
+
|
13
|
+
## [1.1.0] - 2019-06-06
|
14
|
+
### Changed
|
15
|
+
- Removed underscore of quartile numbers
|
16
|
+
|
17
|
+
## [1.0.5] - 2019-08-24
|
18
|
+
### Added
|
19
|
+
- Added ruby 2.7 support
|
20
|
+
### Changed
|
21
|
+
- Improved how configuration works
|
22
|
+
|
23
|
+
## [1.0.4] - 2019-08-17
|
24
|
+
### Changed
|
25
|
+
- Add check for monkey patches
|
26
|
+
|
27
|
+
## [1.0.3] - 2019-08-15
|
28
|
+
### Changed
|
29
|
+
- Underscore initializer file name
|
30
|
+
|
9
31
|
## [1.0.2] - 2019-07-18
|
10
32
|
### Changed
|
11
33
|
- Rename zscores to zscoress
|
data/Gemfile.lock
CHANGED
@@ -1,107 +1,119 @@
|
|
1
1
|
PATH
|
2
2
|
remote: .
|
3
3
|
specs:
|
4
|
-
lite-statistics (1.
|
4
|
+
lite-statistics (1.1.1)
|
5
5
|
lite-memoize
|
6
6
|
|
7
7
|
GEM
|
8
8
|
remote: https://rubygems.org/
|
9
9
|
specs:
|
10
|
-
actionpack (
|
11
|
-
actionview (=
|
12
|
-
activesupport (=
|
13
|
-
rack (~> 2.0)
|
10
|
+
actionpack (6.1.3.2)
|
11
|
+
actionview (= 6.1.3.2)
|
12
|
+
activesupport (= 6.1.3.2)
|
13
|
+
rack (~> 2.0, >= 2.0.9)
|
14
14
|
rack-test (>= 0.6.3)
|
15
15
|
rails-dom-testing (~> 2.0)
|
16
|
-
rails-html-sanitizer (~> 1.0, >= 1.0
|
17
|
-
actionview (
|
18
|
-
activesupport (=
|
16
|
+
rails-html-sanitizer (~> 1.0, >= 1.2.0)
|
17
|
+
actionview (6.1.3.2)
|
18
|
+
activesupport (= 6.1.3.2)
|
19
19
|
builder (~> 3.1)
|
20
20
|
erubi (~> 1.4)
|
21
21
|
rails-dom-testing (~> 2.0)
|
22
|
-
rails-html-sanitizer (~> 1.
|
23
|
-
activesupport (
|
22
|
+
rails-html-sanitizer (~> 1.1, >= 1.2.0)
|
23
|
+
activesupport (6.1.3.2)
|
24
24
|
concurrent-ruby (~> 1.0, >= 1.0.2)
|
25
|
-
i18n (>=
|
26
|
-
minitest (
|
27
|
-
tzinfo (~>
|
28
|
-
|
29
|
-
|
25
|
+
i18n (>= 1.6, < 2)
|
26
|
+
minitest (>= 5.1)
|
27
|
+
tzinfo (~> 2.0)
|
28
|
+
zeitwerk (~> 2.3)
|
29
|
+
ast (2.4.2)
|
30
|
+
builder (3.2.4)
|
30
31
|
colorize (0.8.1)
|
31
|
-
concurrent-ruby (1.1.
|
32
|
-
crass (1.0.
|
33
|
-
diff-lcs (1.
|
34
|
-
erubi (1.
|
35
|
-
fasterer (0.
|
32
|
+
concurrent-ruby (1.1.8)
|
33
|
+
crass (1.0.6)
|
34
|
+
diff-lcs (1.4.4)
|
35
|
+
erubi (1.10.0)
|
36
|
+
fasterer (0.9.0)
|
36
37
|
colorize (~> 0.7)
|
37
|
-
ruby_parser (>= 3.
|
38
|
+
ruby_parser (>= 3.14.1)
|
38
39
|
generator_spec (0.9.4)
|
39
40
|
activesupport (>= 3.0.0)
|
40
41
|
railties (>= 3.0.0)
|
41
|
-
i18n (1.
|
42
|
+
i18n (1.8.10)
|
42
43
|
concurrent-ruby (~> 1.0)
|
43
|
-
|
44
|
-
|
45
|
-
loofah (2.2.3)
|
44
|
+
lite-memoize (1.0.4)
|
45
|
+
loofah (2.9.1)
|
46
46
|
crass (~> 1.0.2)
|
47
47
|
nokogiri (>= 1.5.9)
|
48
|
-
method_source (0.
|
49
|
-
mini_portile2 (2.
|
50
|
-
minitest (5.
|
51
|
-
nokogiri (1.
|
52
|
-
mini_portile2 (~> 2.
|
53
|
-
|
54
|
-
|
55
|
-
|
56
|
-
|
48
|
+
method_source (1.0.0)
|
49
|
+
mini_portile2 (2.5.1)
|
50
|
+
minitest (5.14.4)
|
51
|
+
nokogiri (1.11.3)
|
52
|
+
mini_portile2 (~> 2.5.0)
|
53
|
+
racc (~> 1.4)
|
54
|
+
parallel (1.20.1)
|
55
|
+
parser (3.0.1.1)
|
56
|
+
ast (~> 2.4.1)
|
57
|
+
racc (1.5.2)
|
58
|
+
rack (2.2.3)
|
57
59
|
rack-test (1.1.0)
|
58
60
|
rack (>= 1.0, < 3)
|
59
61
|
rails-dom-testing (2.0.3)
|
60
62
|
activesupport (>= 4.2.0)
|
61
63
|
nokogiri (>= 1.6)
|
62
|
-
rails-html-sanitizer (1.0
|
63
|
-
loofah (~> 2.
|
64
|
-
railties (
|
65
|
-
actionpack (=
|
66
|
-
activesupport (=
|
64
|
+
rails-html-sanitizer (1.3.0)
|
65
|
+
loofah (~> 2.3)
|
66
|
+
railties (6.1.3.2)
|
67
|
+
actionpack (= 6.1.3.2)
|
68
|
+
activesupport (= 6.1.3.2)
|
67
69
|
method_source
|
68
70
|
rake (>= 0.8.7)
|
69
|
-
thor (
|
71
|
+
thor (~> 1.0)
|
70
72
|
rainbow (3.0.0)
|
71
|
-
rake (
|
72
|
-
|
73
|
-
|
74
|
-
|
75
|
-
rspec-
|
76
|
-
|
77
|
-
rspec-
|
78
|
-
rspec-
|
73
|
+
rake (13.0.3)
|
74
|
+
regexp_parser (2.1.1)
|
75
|
+
rexml (3.2.5)
|
76
|
+
rspec (3.10.0)
|
77
|
+
rspec-core (~> 3.10.0)
|
78
|
+
rspec-expectations (~> 3.10.0)
|
79
|
+
rspec-mocks (~> 3.10.0)
|
80
|
+
rspec-core (3.10.1)
|
81
|
+
rspec-support (~> 3.10.0)
|
82
|
+
rspec-expectations (3.10.1)
|
79
83
|
diff-lcs (>= 1.2.0, < 2.0)
|
80
|
-
rspec-support (~> 3.
|
81
|
-
rspec-mocks (3.
|
84
|
+
rspec-support (~> 3.10.0)
|
85
|
+
rspec-mocks (3.10.2)
|
82
86
|
diff-lcs (>= 1.2.0, < 2.0)
|
83
|
-
rspec-support (~> 3.
|
84
|
-
rspec-support (3.
|
85
|
-
rubocop (
|
86
|
-
jaro_winkler (~> 1.5.1)
|
87
|
+
rspec-support (~> 3.10.0)
|
88
|
+
rspec-support (3.10.2)
|
89
|
+
rubocop (1.14.0)
|
87
90
|
parallel (~> 1.10)
|
88
|
-
parser (>=
|
91
|
+
parser (>= 3.0.0.0)
|
89
92
|
rainbow (>= 2.2.2, < 4.0)
|
93
|
+
regexp_parser (>= 1.8, < 3.0)
|
94
|
+
rexml
|
95
|
+
rubocop-ast (>= 1.5.0, < 2.0)
|
90
96
|
ruby-progressbar (~> 1.7)
|
91
|
-
unicode-display_width (>= 1.4.0, <
|
92
|
-
rubocop-
|
93
|
-
|
94
|
-
rubocop-
|
95
|
-
rubocop (>=
|
96
|
-
|
97
|
-
|
97
|
+
unicode-display_width (>= 1.4.0, < 3.0)
|
98
|
+
rubocop-ast (1.5.0)
|
99
|
+
parser (>= 3.0.1.1)
|
100
|
+
rubocop-performance (1.11.3)
|
101
|
+
rubocop (>= 1.7.0, < 2.0)
|
102
|
+
rubocop-ast (>= 0.4.0)
|
103
|
+
rubocop-rake (0.5.1)
|
104
|
+
rubocop
|
105
|
+
rubocop-rspec (2.3.0)
|
106
|
+
rubocop (~> 1.0)
|
107
|
+
rubocop-ast (>= 1.1.0)
|
108
|
+
ruby-progressbar (1.11.0)
|
109
|
+
ruby_parser (3.15.1)
|
98
110
|
sexp_processor (~> 4.9)
|
99
|
-
sexp_processor (4.
|
100
|
-
thor (
|
101
|
-
|
102
|
-
|
103
|
-
|
104
|
-
|
111
|
+
sexp_processor (4.15.2)
|
112
|
+
thor (1.1.0)
|
113
|
+
tzinfo (2.0.4)
|
114
|
+
concurrent-ruby (~> 1.0)
|
115
|
+
unicode-display_width (2.0.0)
|
116
|
+
zeitwerk (2.4.2)
|
105
117
|
|
106
118
|
PLATFORMS
|
107
119
|
ruby
|
@@ -115,7 +127,8 @@ DEPENDENCIES
|
|
115
127
|
rspec
|
116
128
|
rubocop
|
117
129
|
rubocop-performance
|
130
|
+
rubocop-rake
|
118
131
|
rubocop-rspec
|
119
132
|
|
120
133
|
BUNDLED WITH
|
121
|
-
2.
|
134
|
+
2.2.17
|
data/README.md
CHANGED
@@ -31,7 +31,7 @@ Or install it yourself as:
|
|
31
31
|
## Configurations
|
32
32
|
|
33
33
|
`rails g lite:statistics:install` will generate the following file:
|
34
|
-
`../config/initalizers/
|
34
|
+
`../config/initalizers/lite_statistics.rb`
|
35
35
|
|
36
36
|
```ruby
|
37
37
|
Lite::Statistics.configure do |config|
|
@@ -101,7 +101,7 @@ All benchmarks are executed using the baseline summary (exact same calculations
|
|
101
101
|
and the full summary (all available calculations for each). Each is generated
|
102
102
|
using an array containing 1 million random integers on the `2.6.3` Ruby version.
|
103
103
|
|
104
|
-
View
|
104
|
+
View how each compares to other libs by running the [benchmarks](https://github.com/drexed/lite-statistics/tree/master/benchmarks).
|
105
105
|
|
106
106
|
#### Baseline summaries
|
107
107
|
|
data/benchmarks/base.rb
CHANGED
@@ -13,9 +13,9 @@ def ls_baseline_summary(data)
|
|
13
13
|
median: data.median,
|
14
14
|
min: data.min,
|
15
15
|
mode: data.mode,
|
16
|
-
|
17
|
-
|
18
|
-
|
16
|
+
quartile1: data.value_from_percentile(25),
|
17
|
+
quartile2: data.value_from_percentile(50),
|
18
|
+
quartile3: data.value_from_percentile(75),
|
19
19
|
range: data.range,
|
20
20
|
size: data.size,
|
21
21
|
sum: data.sum,
|
@@ -17,9 +17,9 @@ def baseline_summary(data)
|
|
17
17
|
median: data.median,
|
18
18
|
min: data.min,
|
19
19
|
mode: data.mode,
|
20
|
-
|
21
|
-
|
22
|
-
|
20
|
+
quartile1: data.value_from_percentile(25),
|
21
|
+
quartile2: data.value_from_percentile(50),
|
22
|
+
quartile3: data.value_from_percentile(75),
|
23
23
|
range: data.range,
|
24
24
|
size: data.size,
|
25
25
|
sum: data.sum,
|
data/benchmarks/statistica.rb
CHANGED
@@ -17,9 +17,9 @@ def baseline_summary(data)
|
|
17
17
|
median: data.get_median,
|
18
18
|
min: data.min,
|
19
19
|
mode: data.get_mode,
|
20
|
-
|
21
|
-
|
22
|
-
|
20
|
+
quartile1: data.get_percentile(25),
|
21
|
+
quartile2: data.get_percentile(50),
|
22
|
+
quartile3: data.get_percentile(75),
|
23
23
|
range: data.get_range,
|
24
24
|
size: data.size,
|
25
25
|
sum: data.get_sum,
|
@@ -50,7 +50,7 @@ def full_summary(data)
|
|
50
50
|
geometric_mean: data.get_geo_mean,
|
51
51
|
harmonic_mean: data.get_harm_mean,
|
52
52
|
product: data.get_product,
|
53
|
-
|
53
|
+
interquartilerange: data.get_interquartilerange,
|
54
54
|
relative_variance: data.get_relative_variance,
|
55
55
|
coeff_variation: data.get_coeff_variation
|
56
56
|
)
|
data/docs/descriptive/SUMMARY.md
CHANGED
@@ -7,9 +7,9 @@ collection = [1, 1, 2, 3, 10]
|
|
7
7
|
results = {
|
8
8
|
# - all documented calculations - ...
|
9
9
|
# - including value_from_percentile of 25, 50, and 75 (quartile) -
|
10
|
-
|
11
|
-
|
12
|
-
|
10
|
+
quartile1: 2,
|
11
|
+
quartile2: 3,
|
12
|
+
quartile3: 10
|
13
13
|
}
|
14
14
|
|
15
15
|
klass = Lite::Statistics::Descriptive.new(collection)
|
data/lib/lite/statistics.rb
CHANGED
@@ -2,10 +2,8 @@
|
|
2
2
|
|
3
3
|
require 'lite/memoize'
|
4
4
|
|
5
|
-
%w[version configuration descriptive].each do |filename|
|
5
|
+
%w[version configuration descriptive enumerable].each do |filename|
|
6
6
|
require "lite/statistics/#{filename}"
|
7
7
|
end
|
8
8
|
|
9
|
-
require 'lite/statistics/enumerable' if Lite::Statistics.configuration.monkey_patches
|
10
|
-
|
11
9
|
require 'generators/lite/statistics/install_generator'
|
@@ -13,16 +13,22 @@ module Lite
|
|
13
13
|
|
14
14
|
end
|
15
15
|
|
16
|
-
|
17
|
-
@configuration ||= Configuration.new
|
18
|
-
end
|
16
|
+
class << self
|
19
17
|
|
20
|
-
|
21
|
-
|
22
|
-
|
18
|
+
attr_writer :configuration
|
19
|
+
|
20
|
+
def configuration
|
21
|
+
@configuration ||= Configuration.new
|
22
|
+
end
|
23
|
+
|
24
|
+
def configure
|
25
|
+
yield(configuration)
|
26
|
+
end
|
27
|
+
|
28
|
+
def reset_configuration!
|
29
|
+
@configuration = Configuration.new
|
30
|
+
end
|
23
31
|
|
24
|
-
def self.configure
|
25
|
-
yield(configuration)
|
26
32
|
end
|
27
33
|
|
28
34
|
end
|
@@ -6,7 +6,7 @@ module Lite
|
|
6
6
|
|
7
7
|
extend Lite::Memoize::Alias
|
8
8
|
|
9
|
-
CALCULATIONS
|
9
|
+
CALCULATIONS = %i[
|
10
10
|
frequencies max mean median midrange min mode proportions percentile_from_value
|
11
11
|
population_coefficient_of_variation population_kurtosis population_size population_skewness
|
12
12
|
population_standard_deviation population_standard_error population_summary
|
@@ -38,7 +38,7 @@ module Lite
|
|
38
38
|
|
39
39
|
memoize :frequencies
|
40
40
|
|
41
|
-
# rubocop:disable Style/
|
41
|
+
# rubocop:disable Style/RedundantSort
|
42
42
|
def max
|
43
43
|
return if @collection.empty?
|
44
44
|
|
@@ -46,7 +46,7 @@ module Lite
|
|
46
46
|
end
|
47
47
|
|
48
48
|
memoize :max
|
49
|
-
# rubocop:enable Style/
|
49
|
+
# rubocop:enable Style/RedundantSort
|
50
50
|
|
51
51
|
def mean
|
52
52
|
return if @collection.empty?
|
@@ -68,7 +68,7 @@ module Lite
|
|
68
68
|
memoize :median
|
69
69
|
# rubocop:enable Metrics/AbcSize
|
70
70
|
|
71
|
-
# rubocop:disable Style/
|
71
|
+
# rubocop:disable Style/RedundantSort
|
72
72
|
def min
|
73
73
|
return if @collection.empty?
|
74
74
|
|
@@ -76,7 +76,7 @@ module Lite
|
|
76
76
|
end
|
77
77
|
|
78
78
|
memoize :min
|
79
|
-
# rubocop:enable Style/
|
79
|
+
# rubocop:enable Style/RedundantSort
|
80
80
|
|
81
81
|
def mode
|
82
82
|
return if @collection.empty?
|
@@ -192,7 +192,7 @@ module Lite
|
|
192
192
|
def proportions
|
193
193
|
return if @collection.empty?
|
194
194
|
|
195
|
-
frequencies.
|
195
|
+
frequencies.transform_values { |val| val / size.to_f }
|
196
196
|
end
|
197
197
|
|
198
198
|
memoize :proportions
|
@@ -326,9 +326,9 @@ module Lite
|
|
326
326
|
min: min,
|
327
327
|
mode: mode,
|
328
328
|
proportions: proportions,
|
329
|
-
|
330
|
-
|
331
|
-
|
329
|
+
quartile1: value_from_percentile(25),
|
330
|
+
quartile2: value_from_percentile(50),
|
331
|
+
quartile3: value_from_percentile(75),
|
332
332
|
range: range,
|
333
333
|
size: size,
|
334
334
|
sum: sum
|
@@ -1,24 +1,28 @@
|
|
1
1
|
# frozen_string_literal: true
|
2
2
|
|
3
|
-
|
3
|
+
if Lite::Statistics.configuration.monkey_patches
|
4
|
+
module Enumerable
|
4
5
|
|
5
|
-
|
6
|
-
next if %i[max min sum].include?(name)
|
6
|
+
EXCLUDED_DESCRIPTIVE_CALCULATIONS = %i[max min sum].freeze
|
7
7
|
|
8
|
-
|
9
|
-
|
8
|
+
Lite::Statistics::Descriptive::CALCULATIONS.each do |name|
|
9
|
+
next if EXCLUDED_DESCRIPTIVE_CALCULATIONS.include?(name)
|
10
|
+
|
11
|
+
define_method(name) { |*args| Lite::Statistics::Descriptive.send(name, self, *args) }
|
12
|
+
end
|
10
13
|
|
11
|
-
|
12
|
-
|
13
|
-
|
14
|
-
|
15
|
-
|
16
|
-
|
17
|
-
|
18
|
-
|
19
|
-
|
20
|
-
|
21
|
-
|
22
|
-
|
14
|
+
alias average mean
|
15
|
+
alias coefficient_of_variation sample_coefficient_of_variation
|
16
|
+
alias kurtosis sample_kurtosis
|
17
|
+
alias midextreme midrange
|
18
|
+
alias percentile percentile_from_value
|
19
|
+
alias percentile_rank value_from_percentile
|
20
|
+
alias skewness sample_skewness
|
21
|
+
alias standard_deviation sample_standard_deviation
|
22
|
+
alias standard_error sample_standard_error
|
23
|
+
alias summary sample_summary
|
24
|
+
alias variance sample_variance
|
25
|
+
alias zscores sample_zscores
|
23
26
|
|
27
|
+
end
|
24
28
|
end
|
data/lite-statistics.gemspec
CHANGED
@@ -46,5 +46,6 @@ Gem::Specification.new do |spec|
|
|
46
46
|
spec.add_development_dependency 'rspec'
|
47
47
|
spec.add_development_dependency 'rubocop'
|
48
48
|
spec.add_development_dependency 'rubocop-performance'
|
49
|
+
spec.add_development_dependency 'rubocop-rake'
|
49
50
|
spec.add_development_dependency 'rubocop-rspec'
|
50
51
|
end
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: lite-statistics
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.1.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Juan Gomez
|
8
|
-
autorequire:
|
8
|
+
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2021-05-07 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: lite-memoize
|
@@ -122,6 +122,20 @@ dependencies:
|
|
122
122
|
- - ">="
|
123
123
|
- !ruby/object:Gem::Version
|
124
124
|
version: '0'
|
125
|
+
- !ruby/object:Gem::Dependency
|
126
|
+
name: rubocop-rake
|
127
|
+
requirement: !ruby/object:Gem::Requirement
|
128
|
+
requirements:
|
129
|
+
- - ">="
|
130
|
+
- !ruby/object:Gem::Version
|
131
|
+
version: '0'
|
132
|
+
type: :development
|
133
|
+
prerelease: false
|
134
|
+
version_requirements: !ruby/object:Gem::Requirement
|
135
|
+
requirements:
|
136
|
+
- - ">="
|
137
|
+
- !ruby/object:Gem::Version
|
138
|
+
version: '0'
|
125
139
|
- !ruby/object:Gem::Dependency
|
126
140
|
name: rubocop-rspec
|
127
141
|
requirement: !ruby/object:Gem::Requirement
|
@@ -136,7 +150,7 @@ dependencies:
|
|
136
150
|
- - ">="
|
137
151
|
- !ruby/object:Gem::Version
|
138
152
|
version: '0'
|
139
|
-
description:
|
153
|
+
description:
|
140
154
|
email:
|
141
155
|
- j.gomez@drexed.com
|
142
156
|
executables: []
|
@@ -196,7 +210,7 @@ homepage: http://drexed.github.io/lite-statistics
|
|
196
210
|
licenses:
|
197
211
|
- MIT
|
198
212
|
metadata: {}
|
199
|
-
post_install_message:
|
213
|
+
post_install_message:
|
200
214
|
rdoc_options: []
|
201
215
|
require_paths:
|
202
216
|
- lib
|
@@ -211,8 +225,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
211
225
|
- !ruby/object:Gem::Version
|
212
226
|
version: '0'
|
213
227
|
requirements: []
|
214
|
-
rubygems_version: 3.
|
215
|
-
signing_key:
|
228
|
+
rubygems_version: 3.2.17
|
229
|
+
signing_key:
|
216
230
|
specification_version: 4
|
217
231
|
summary: Generate statistics from collections of data points
|
218
232
|
test_files: []
|