time_trap 0.0.6 → 0.1.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 +4 -4
- data/time_trap.gemspec +3 -3
- metadata +5 -5
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: ba64909a7782c28a1ba2e3d5b8178b9e791c8c08
|
4
|
+
data.tar.gz: e8d8b0d99b514679c6e4c5753003cfc13d84033b
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 8e1f2c2d0c862cbb3c7940fade75461ea9adf1973f5be8b817f5d215ad4e2d40c9389e444f8cd6551c335d9140944c36c55b9405cb4ed7509d59fc13a098ea9b
|
7
|
+
data.tar.gz: 62695e704347a159b523a8f74cafc0533e970f6ce77b9dfb2a0ac202cfee052922598ca18669402a2fccbe289a1d8fb2e340447e00fffd5eff4d0cb645084fc7
|
data/time_trap.gemspec
CHANGED
@@ -4,11 +4,11 @@ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
|
|
4
4
|
|
5
5
|
Gem::Specification.new do |spec|
|
6
6
|
spec.name = "time_trap"
|
7
|
-
spec.version = "0.0
|
7
|
+
spec.version = "0.1.0"
|
8
8
|
spec.authors = ["Pat Farrell"]
|
9
9
|
spec.email = ["mr.patfarrell@gmail.com"]
|
10
|
-
spec.summary = %q{
|
11
|
-
spec.description = %q{
|
10
|
+
spec.summary = %q{TimeTrap impelents a moving window data structure for keeping track of top-k things}
|
11
|
+
spec.description = %q{TimeTrap is a sorted set which keeps track of the times values are added allowing for investigation of a set over time intervals.}
|
12
12
|
spec.homepage = "https://rubygems.org/gems/time_trap"
|
13
13
|
spec.license = "MIT"
|
14
14
|
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: time_trap
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.0
|
4
|
+
version: 0.1.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Pat Farrell
|
@@ -108,8 +108,8 @@ dependencies:
|
|
108
108
|
- - "~>"
|
109
109
|
- !ruby/object:Gem::Version
|
110
110
|
version: '1.1'
|
111
|
-
description:
|
112
|
-
|
111
|
+
description: TimeTrap is a sorted set which keeps track of the times values are added
|
112
|
+
allowing for investigation of a set over time intervals.
|
113
113
|
email:
|
114
114
|
- mr.patfarrell@gmail.com
|
115
115
|
executables: []
|
@@ -152,8 +152,8 @@ rubyforge_project:
|
|
152
152
|
rubygems_version: 2.2.2
|
153
153
|
signing_key:
|
154
154
|
specification_version: 4
|
155
|
-
summary:
|
156
|
-
|
155
|
+
summary: TimeTrap impelents a moving window data structure for keeping track of top-k
|
156
|
+
things
|
157
157
|
test_files:
|
158
158
|
- spec/spec_helper.rb
|
159
159
|
- spec/timetrap/deque_spec.rb
|