time_trap 0.0.5 → 0.0.6

Sign up to get free protection for your applications and to get access to all the features.
Files changed (3) hide show
  1. checksums.yaml +4 -4
  2. data/time_trap.gemspec +3 -3
  3. metadata +5 -5
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: d30223f65f22ddaf031ee3b26a82f4ae4dc575a4
4
- data.tar.gz: 6211bb8bcceb931d380cdf3baf4421ed921bc4da
3
+ metadata.gz: 54c182c13ed65ab77e2b51e6069ddb3314d26246
4
+ data.tar.gz: a6fb2297c4ce25bb88edd1f191ad2e107adbde26
5
5
  SHA512:
6
- metadata.gz: 69686f11676f70fd77ab8ae7ec0fac6f4785f50b50773867d3ef2f2f0b4ce4015da44c7d42d87304eff0ed0e3f7a6499b29628ddaf259a2d885ad4a3b5d1e116
7
- data.tar.gz: 832d5fb56b1685ed60b13ae06f92e22c654d51c65996f374ad9fbf1c28f0478feeb10eeedbfbd5aa07fd985957f9862d0297363d2ebd1ac466ebda54a706c169
6
+ metadata.gz: 1889717895aac33f8cc474c8d7d24052afc83b3f084d2b36d1e578b31cbbea98d9311cadf5db13b59fe031c27dbd4577b3de6060d9bef0438b64f67d5bde7fe5
7
+ data.tar.gz: b783491119e6a342471f48365ad639de4d850d5a8a057248ef77023d14082254049157634ceb0cc36bc4e86a1b46ab604d3214e749fab7d3c72544e6aaa17510
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.5"
7
+ spec.version = "0.0.6"
8
8
  spec.authors = ["Pat Farrell"]
9
9
  spec.email = ["mr.patfarrell@gmail.com"]
10
- spec.summary = %q{"exposes a data structure suitable for capturing and inspecting moving windows of data"}
11
- spec.description = %q{"timetrap is a work in progress to create a simple data strucutre that allows for windowed inspection of counts added to a hash"}
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.5
4
+ version: 0.0.6
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: "\"timetrap is a work in progress to create a simple data strucutre that
112
- allows for windowed inspection of counts added to a hash\""
111
+ description: "\"TimeTrap is a sorted set which keeps track of the times values are
112
+ added 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: "\"exposes a data structure suitable for capturing and inspecting moving
156
- windows of data\""
155
+ summary: "\"TimeTrap impelents a moving window data structure for keeping track of
156
+ top-k things\""
157
157
  test_files:
158
158
  - spec/spec_helper.rb
159
159
  - spec/timetrap/deque_spec.rb