lite-statistics 1.1.1 → 1.2.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
2
  SHA256:
3
- metadata.gz: ae8256539084cceb1bc452eb98e855081ea4d58fa3f24c0e3c57cda46977ac21
4
- data.tar.gz: c120fe0ba7a3e2a6f0ca82f828d091f0d5b3f0e88e048c840f1ebd21d304d20d
3
+ metadata.gz: a8d825f336380fddde691b041da67751df05101d1dd452eb334cb3f37c6a4a8c
4
+ data.tar.gz: bc28a499f0565d127be3039074beb152687c6d5d8e0824af1f86eb436cd389b9
5
5
  SHA512:
6
- metadata.gz: 2161327f4f4a6890de8fefcd46877dc13a53635d192801b7d166d84816ae5dd62110c17fc4a0b1d7fcce4634a2d086c059f8bc9fc8e2c92d6b936ed9bc7f4b5f
7
- data.tar.gz: b3fa5ca4e4b70dae02ec856895475c464b7c6b9655ae22edbb5eee31c0ddd8998d750b948771305ad8df9d1dfce42a0d380c139d160d621a2e3ec4e6c25f73d7
6
+ metadata.gz: 40d1e2a1aa2e7702258c22fcecb9cf0fc706dca2284ae6af95465e90cd1c5450555761040ad22aa79f85cc0dbf88349f9021bcbba322dff2235965a69c3e3813
7
+ data.tar.gz: 7448f5cf419f2ba60633ceb2e7418397cc958f0c44871f136e224224d841dd8b7242708a5dc52ce5fc6baf2e86b0114cd5fddd093d41476b0d06580e8975e5d2
data/.rubocop.yml CHANGED
@@ -3,7 +3,7 @@ require:
3
3
  - rubocop-rake
4
4
  - rubocop-rspec
5
5
  AllCops:
6
- TargetRubyVersion: 2.7
6
+ TargetRubyVersion: 3.0
7
7
  NewCops: enable
8
8
  DisplayCopNames: true
9
9
  DisplayStyleGuide: true
@@ -32,6 +32,8 @@ Metrics/ClassLength:
32
32
  Enabled: false
33
33
  Naming/FileName:
34
34
  Enabled: false
35
+ Style/ArgumentsForwarding:
36
+ Enabled: false
35
37
  Style/Documentation:
36
38
  Enabled: false
37
39
  Style/ExpandPathArguments:
data/CHANGELOG.md CHANGED
@@ -6,6 +6,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
6
6
 
7
7
  ## [Unreleased]
8
8
 
9
+ ## [1.2.0] - 2021-07-19
10
+ ### Added
11
+ - Added Ruby 3.0 support
12
+
9
13
  ## [1.1.1] - 2019-07-05
10
14
  ### Changed
11
15
  - Linter fixes
data/Gemfile.lock CHANGED
@@ -1,26 +1,26 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- lite-statistics (1.1.1)
4
+ lite-statistics (1.2.0)
5
5
  lite-memoize
6
6
 
7
7
  GEM
8
8
  remote: https://rubygems.org/
9
9
  specs:
10
- actionpack (6.1.3.2)
11
- actionview (= 6.1.3.2)
12
- activesupport (= 6.1.3.2)
10
+ actionpack (6.1.4)
11
+ actionview (= 6.1.4)
12
+ activesupport (= 6.1.4)
13
13
  rack (~> 2.0, >= 2.0.9)
14
14
  rack-test (>= 0.6.3)
15
15
  rails-dom-testing (~> 2.0)
16
16
  rails-html-sanitizer (~> 1.0, >= 1.2.0)
17
- actionview (6.1.3.2)
18
- activesupport (= 6.1.3.2)
17
+ actionview (6.1.4)
18
+ activesupport (= 6.1.4)
19
19
  builder (~> 3.1)
20
20
  erubi (~> 1.4)
21
21
  rails-dom-testing (~> 2.0)
22
22
  rails-html-sanitizer (~> 1.1, >= 1.2.0)
23
- activesupport (6.1.3.2)
23
+ activesupport (6.1.4)
24
24
  concurrent-ruby (~> 1.0, >= 1.0.2)
25
25
  i18n (>= 1.6, < 2)
26
26
  minitest (>= 5.1)
@@ -29,7 +29,7 @@ GEM
29
29
  ast (2.4.2)
30
30
  builder (3.2.4)
31
31
  colorize (0.8.1)
32
- concurrent-ruby (1.1.8)
32
+ concurrent-ruby (1.1.9)
33
33
  crass (1.0.6)
34
34
  diff-lcs (1.4.4)
35
35
  erubi (1.10.0)
@@ -41,18 +41,18 @@ GEM
41
41
  railties (>= 3.0.0)
42
42
  i18n (1.8.10)
43
43
  concurrent-ruby (~> 1.0)
44
- lite-memoize (1.0.4)
45
- loofah (2.9.1)
44
+ lite-memoize (1.1.0)
45
+ loofah (2.10.0)
46
46
  crass (~> 1.0.2)
47
47
  nokogiri (>= 1.5.9)
48
48
  method_source (1.0.0)
49
- mini_portile2 (2.5.1)
49
+ mini_portile2 (2.5.3)
50
50
  minitest (5.14.4)
51
- nokogiri (1.11.3)
51
+ nokogiri (1.11.7)
52
52
  mini_portile2 (~> 2.5.0)
53
53
  racc (~> 1.4)
54
54
  parallel (1.20.1)
55
- parser (3.0.1.1)
55
+ parser (3.0.2.0)
56
56
  ast (~> 2.4.1)
57
57
  racc (1.5.2)
58
58
  rack (2.2.3)
@@ -63,14 +63,14 @@ GEM
63
63
  nokogiri (>= 1.6)
64
64
  rails-html-sanitizer (1.3.0)
65
65
  loofah (~> 2.3)
66
- railties (6.1.3.2)
67
- actionpack (= 6.1.3.2)
68
- activesupport (= 6.1.3.2)
66
+ railties (6.1.4)
67
+ actionpack (= 6.1.4)
68
+ activesupport (= 6.1.4)
69
69
  method_source
70
- rake (>= 0.8.7)
70
+ rake (>= 0.13)
71
71
  thor (~> 1.0)
72
72
  rainbow (3.0.0)
73
- rake (13.0.3)
73
+ rake (13.0.6)
74
74
  regexp_parser (2.1.1)
75
75
  rexml (3.2.5)
76
76
  rspec (3.10.0)
@@ -86,29 +86,29 @@ GEM
86
86
  diff-lcs (>= 1.2.0, < 2.0)
87
87
  rspec-support (~> 3.10.0)
88
88
  rspec-support (3.10.2)
89
- rubocop (1.14.0)
89
+ rubocop (1.18.3)
90
90
  parallel (~> 1.10)
91
91
  parser (>= 3.0.0.0)
92
92
  rainbow (>= 2.2.2, < 4.0)
93
93
  regexp_parser (>= 1.8, < 3.0)
94
94
  rexml
95
- rubocop-ast (>= 1.5.0, < 2.0)
95
+ rubocop-ast (>= 1.7.0, < 2.0)
96
96
  ruby-progressbar (~> 1.7)
97
97
  unicode-display_width (>= 1.4.0, < 3.0)
98
- rubocop-ast (1.5.0)
98
+ rubocop-ast (1.8.0)
99
99
  parser (>= 3.0.1.1)
100
- rubocop-performance (1.11.3)
100
+ rubocop-performance (1.11.4)
101
101
  rubocop (>= 1.7.0, < 2.0)
102
102
  rubocop-ast (>= 0.4.0)
103
- rubocop-rake (0.5.1)
104
- rubocop
105
- rubocop-rspec (2.3.0)
103
+ rubocop-rake (0.6.0)
104
+ rubocop (~> 1.0)
105
+ rubocop-rspec (2.4.0)
106
106
  rubocop (~> 1.0)
107
107
  rubocop-ast (>= 1.1.0)
108
108
  ruby-progressbar (1.11.0)
109
- ruby_parser (3.15.1)
110
- sexp_processor (~> 4.9)
111
- sexp_processor (4.15.2)
109
+ ruby_parser (3.16.0)
110
+ sexp_processor (~> 4.15, >= 4.15.1)
111
+ sexp_processor (4.15.3)
112
112
  thor (1.1.0)
113
113
  tzinfo (2.0.4)
114
114
  concurrent-ruby (~> 1.0)
@@ -131,4 +131,4 @@ DEPENDENCIES
131
131
  rubocop-rspec
132
132
 
133
133
  BUNDLED WITH
134
- 2.2.17
134
+ 2.2.24
@@ -3,7 +3,7 @@
3
3
  module Lite
4
4
  module Statistics
5
5
 
6
- VERSION = '1.1.1'
6
+ VERSION = '1.2.0'
7
7
 
8
8
  end
9
9
  end
@@ -25,7 +25,7 @@ Gem::Specification.new do |spec|
25
25
  )
26
26
  else
27
27
  raise 'RubyGems 2.0 or newer is required to protect against ' \
28
- 'public gem pushes.'
28
+ 'public gem pushes.'
29
29
  end
30
30
 
31
31
  # Specify which files should be added to the gem when it is released.
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.1.1
4
+ version: 1.2.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Juan Gomez
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2021-05-07 00:00:00.000000000 Z
11
+ date: 2021-07-20 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: lite-memoize
@@ -225,7 +225,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
225
225
  - !ruby/object:Gem::Version
226
226
  version: '0'
227
227
  requirements: []
228
- rubygems_version: 3.2.17
228
+ rubygems_version: 3.2.24
229
229
  signing_key:
230
230
  specification_version: 4
231
231
  summary: Generate statistics from collections of data points