fast_priority_queue 0.1.1 → 0.1.2

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
  SHA1:
3
- metadata.gz: e74db77609a3446536315ec586a3c8a9f1e3aa88
4
- data.tar.gz: 211966d8316c910cad0cd36d23610326be312155
3
+ metadata.gz: 42e241221191db5e8afc6957fe12c5f76cf17271
4
+ data.tar.gz: e47c260a7da45e25de8f5c98dae7fed2102847fe
5
5
  SHA512:
6
- metadata.gz: 1d200532c3679176c773eb1cd9879474a76fc04593f7641114350eaaca77d47ca85fdd11453515cc79834bb0a8e391a600f85cb4af2cd5d3f6fc44c42ae8a19f
7
- data.tar.gz: 9683935fe7caf8f0992453c1774336bb740a990267309c46fe3fc09ee6c2aa51827b5a1cc192bff5f0bde1cae3074567de9bcee8dff9c293672280b32d45f857
6
+ metadata.gz: 435391f38a3e44be34b9743378df24945c2c0bf70f5c3c3214cf2341a5e0fb7cca34501d597d7925289c7a5f72e50667f18df4e8e2b59113287734d48f3f497c
7
+ data.tar.gz: e1d49a2437bdf32eca9202a1969356fe7dfd0144088aad86b666b80a8ee8800ec7306d876757bddf694ad4430df2e0844ad259d518f0be4533fe4a8ac4b9016a
data/README.md CHANGED
@@ -1,8 +1,8 @@
1
1
  # FastPriorityQueue
2
2
 
3
- Welcome to your new gem! In this directory, you'll find the files you need to be able to package up your Ruby library into a gem. Put your Ruby code in the file `lib/fast_priority_queue`. To experiment with that code, run `bin/console` for an interactive prompt.
3
+ [![Gem Version](https://badge.fury.io/rb/fast_priority_queue.svg)](https://badge.fury.io/rb/fast_priority_queue)
4
4
 
5
- TODO: Delete this and the text above, and describe your gem
5
+ A blazzingly fast implementation of priority queue using [Rust](https://www.rust-lang.org/en-US/) + [Ruru](https://github.com/d-unseductable/ruru)
6
6
 
7
7
  ## Installation
8
8
 
@@ -9,8 +9,8 @@ Gem::Specification.new do |spec|
9
9
  spec.authors = ["Simon Soriano"]
10
10
  spec.email = ["simon0191@gmail.com"]
11
11
 
12
- spec.summary = "Fast priority queue using Rust"
13
- spec.description = "Fast priority queue using Rust"
12
+ spec.summary = "Priority queue implementation using Rust"
13
+ spec.description = "A blazzingly fast implementation of priority queue using Rust + Ruru"
14
14
  spec.homepage = "https://github.com/simon0191/fast_priority_queue"
15
15
 
16
16
  # Prevent pushing this gem to RubyGems.org. To allow pushes either set the 'allowed_push_host'
@@ -1,3 +1,3 @@
1
1
  class FastPriorityQueue
2
- VERSION = "0.1.1"
2
+ VERSION = "0.1.2"
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: fast_priority_queue
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.1
4
+ version: 0.1.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Simon Soriano
@@ -80,7 +80,7 @@ dependencies:
80
80
  - - "~>"
81
81
  - !ruby/object:Gem::Version
82
82
  version: '0'
83
- description: Fast priority queue using Rust
83
+ description: A blazzingly fast implementation of priority queue using Rust + Ruru
84
84
  email:
85
85
  - simon0191@gmail.com
86
86
  executables: []
@@ -125,5 +125,5 @@ rubyforge_project:
125
125
  rubygems_version: 2.5.1
126
126
  signing_key:
127
127
  specification_version: 4
128
- summary: Fast priority queue using Rust
128
+ summary: Priority queue implementation using Rust
129
129
  test_files: []