fast_stats 0.1.0 → 0.2.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 4262afb2c5191b9060d2e7318e5329c3a8695badeffbba62c9dd6adc9dd81019
4
- data.tar.gz: 1983784d73ec71eca7779831fc0ec32388d481114633b705782d73e2f72e6853
3
+ metadata.gz: 2b254c6d9ac9de30f6e6eb80c6b8e10140c1228bf757b4c3699965fcded4016b
4
+ data.tar.gz: 0c8f0a859b82584c34ae6933a1a3e3c750f4159706cc72c8745eade54f5e288d
5
5
  SHA512:
6
- metadata.gz: 43c902a5500a9b0c71434f717bd7d3dec9c7cdc38eca5a1860622cad326720cc3dc92af38126f4a7273f868f86520f7196e0faf8d5e45491a0293c9a0b3b4d1f
7
- data.tar.gz: 8c942cfc3e501072c20a4ed60d695a90f97e71f62a11b08fe97fb68c4608615bfbe3ed9895ae8670491055fd59ed757d9890a81119cb9be2d5610e5c042f16e5
6
+ metadata.gz: 245041315ef3008e63cf1dceb9255e6e76999a2a6060639f7a24f0a7db3f0e007cfd5e051b314a9c9acf32b45dc95bbafd5f08d7b99495bd5d49a34bdab5244f
7
+ data.tar.gz: d976796eee046300106657d58df5d7a7f43c063393e48dea8681238c9ebf2051c1404fb05dddb4b337a0eda66672034fb1bb091b7a1320c335bbb0860855d185
@@ -10,6 +10,9 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
10
10
  - Include the harmonic mean
11
11
  - Enable zero handling configuration for geometric mean.
12
12
 
13
+ ### Changed
14
+ - Update activesupport dependency to include 6.0.*
15
+
13
16
  ## [0.1.0] - 2018-02-22
14
17
  ### Added
15
18
  - `FastStats::Means` for building up several arithmetic and geometric means over time.
@@ -1,23 +1,24 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- fast_stats (0.1.0.pre.beta.pre.1)
5
- activesupport (>= 4.0, < 5.2)
4
+ fast_stats (0.2.0)
5
+ activesupport (>= 4.0, < 6.1)
6
6
 
7
7
  GEM
8
8
  remote: https://rubygems.org/
9
9
  specs:
10
- activesupport (5.1.5)
10
+ activesupport (6.0.0)
11
11
  concurrent-ruby (~> 1.0, >= 1.0.2)
12
- i18n (~> 0.7)
12
+ i18n (>= 0.7, < 2)
13
13
  minitest (~> 5.1)
14
14
  tzinfo (~> 1.1)
15
+ zeitwerk (~> 2.1, >= 2.1.8)
15
16
  coderay (1.1.2)
16
- concurrent-ruby (1.0.5)
17
+ concurrent-ruby (1.1.5)
17
18
  diff-lcs (1.3)
18
- ffi (1.9.21)
19
+ ffi (1.11.1)
19
20
  formatador (0.2.5)
20
- guard (2.14.2)
21
+ guard (2.15.1)
21
22
  formatador (>= 0.2.4)
22
23
  listen (>= 2.7, < 4.0)
23
24
  lumberjack (>= 1.0.12, < 2.0)
@@ -31,45 +32,46 @@ GEM
31
32
  guard (~> 2.1)
32
33
  guard-compat (~> 1.1)
33
34
  rspec (>= 2.99.0, < 4.0)
34
- i18n (0.9.5)
35
+ i18n (1.6.0)
35
36
  concurrent-ruby (~> 1.0)
36
37
  listen (3.1.5)
37
38
  rb-fsevent (~> 0.9, >= 0.9.4)
38
39
  rb-inotify (~> 0.9, >= 0.9.7)
39
40
  ruby_dep (~> 1.2)
40
- lumberjack (1.0.12)
41
- method_source (0.9.0)
41
+ lumberjack (1.0.13)
42
+ method_source (0.9.2)
42
43
  minitest (5.11.3)
43
44
  nenv (0.3.0)
44
- notiffany (0.1.1)
45
+ notiffany (0.1.3)
45
46
  nenv (~> 0.1)
46
47
  shellany (~> 0.0)
47
- pry (0.11.3)
48
+ pry (0.12.2)
48
49
  coderay (~> 1.1.0)
49
50
  method_source (~> 0.9.0)
50
51
  rake (10.5.0)
51
- rb-fsevent (0.10.2)
52
- rb-inotify (0.9.10)
53
- ffi (>= 0.5.0, < 2)
54
- rspec (3.7.0)
55
- rspec-core (~> 3.7.0)
56
- rspec-expectations (~> 3.7.0)
57
- rspec-mocks (~> 3.7.0)
58
- rspec-core (3.7.1)
59
- rspec-support (~> 3.7.0)
60
- rspec-expectations (3.7.0)
52
+ rb-fsevent (0.10.3)
53
+ rb-inotify (0.10.0)
54
+ ffi (~> 1.0)
55
+ rspec (3.8.0)
56
+ rspec-core (~> 3.8.0)
57
+ rspec-expectations (~> 3.8.0)
58
+ rspec-mocks (~> 3.8.0)
59
+ rspec-core (3.8.2)
60
+ rspec-support (~> 3.8.0)
61
+ rspec-expectations (3.8.4)
61
62
  diff-lcs (>= 1.2.0, < 2.0)
62
- rspec-support (~> 3.7.0)
63
- rspec-mocks (3.7.0)
63
+ rspec-support (~> 3.8.0)
64
+ rspec-mocks (3.8.1)
64
65
  diff-lcs (>= 1.2.0, < 2.0)
65
- rspec-support (~> 3.7.0)
66
- rspec-support (3.7.1)
66
+ rspec-support (~> 3.8.0)
67
+ rspec-support (3.8.2)
67
68
  ruby_dep (1.5.0)
68
69
  shellany (0.0.1)
69
- thor (0.20.0)
70
+ thor (0.20.3)
70
71
  thread_safe (0.3.6)
71
72
  tzinfo (1.2.5)
72
73
  thread_safe (~> 0.1)
74
+ zeitwerk (2.1.9)
73
75
 
74
76
  PLATFORMS
75
77
  ruby
@@ -30,6 +30,6 @@ Gem::Specification.new do |spec|
30
30
  spec.add_development_dependency "pry"
31
31
 
32
32
  # Runtime Dependencies
33
- spec.add_runtime_dependency 'activesupport', '< 5.2', '>= 4.0'
33
+ spec.add_runtime_dependency 'activesupport', '< 6.1', '>= 4.0'
34
34
 
35
35
  end
@@ -1,3 +1,3 @@
1
1
  module FastStats
2
- VERSION = "0.1.0"
2
+ VERSION = "0.2.0"
3
3
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: fast_stats
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.0
4
+ version: 0.2.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Kyle Rader
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2018-03-05 00:00:00.000000000 Z
11
+ date: 2019-09-26 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler
@@ -98,22 +98,22 @@ dependencies:
98
98
  name: activesupport
99
99
  requirement: !ruby/object:Gem::Requirement
100
100
  requirements:
101
- - - "<"
102
- - !ruby/object:Gem::Version
103
- version: '5.2'
104
101
  - - ">="
105
102
  - !ruby/object:Gem::Version
106
103
  version: '4.0'
104
+ - - "<"
105
+ - !ruby/object:Gem::Version
106
+ version: '6.1'
107
107
  type: :runtime
108
108
  prerelease: false
109
109
  version_requirements: !ruby/object:Gem::Requirement
110
110
  requirements:
111
- - - "<"
112
- - !ruby/object:Gem::Version
113
- version: '5.2'
114
111
  - - ">="
115
112
  - !ruby/object:Gem::Version
116
113
  version: '4.0'
114
+ - - "<"
115
+ - !ruby/object:Gem::Version
116
+ version: '6.1'
117
117
  description: A small Ruby Gem for doing fast stats to help manage metrics calculations
118
118
  email:
119
119
  - kyle@kylerader.ninja
@@ -158,8 +158,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
158
158
  - !ruby/object:Gem::Version
159
159
  version: '0'
160
160
  requirements: []
161
- rubyforge_project:
162
- rubygems_version: 2.7.3
161
+ rubygems_version: 3.0.3
163
162
  signing_key:
164
163
  specification_version: 4
165
164
  summary: A small Ruby Gem for doing fast stats