Skip to content

Commit

Permalink
wip
Browse files Browse the repository at this point in the history
  • Loading branch information
jbielick committed Nov 17, 2021
1 parent a95e9dc commit 5a49cf6
Show file tree
Hide file tree
Showing 18 changed files with 117 additions and 2,474 deletions.
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
vendor
tmp
.DS_Store
2 changes: 1 addition & 1 deletion CHANGELOG
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
0.1.0
* API changes
* Added lots of unit tests
* Restructured
* Restructured
* Fallback to ruby version if c version is not available
* Added Efficent Pure Ruby Implementation (3 times slower than c version in
dijkstras algorithm)
Expand Down
3 changes: 3 additions & 0 deletions Gemfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
source 'https://rubygems.org'

gemspec
22 changes: 22 additions & 0 deletions Gemfile.lock
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
PATH
remote: .
specs:
priority_queue (0.2.0)

GEM
remote: https://rubygems.org/
specs:
rake (13.0.6)
rake-compiler (1.1.1)
rake

PLATFORMS
ruby

DEPENDENCIES
priority_queue!
rake (>= 1.9.1)
rake-compiler (>= 0.8.3)

BUNDLED WITH
1.17.2
140 changes: 0 additions & 140 deletions Makefile

This file was deleted.

6 changes: 6 additions & 0 deletions Rakefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
require 'bundler/gem_tasks'
require 'rake/extensiontask'

gemspec = Gem::Specification.load('priority_queue.gemspec')

Rake::ExtensionTask.new('priority_queue', gemspec)
49 changes: 0 additions & 49 deletions compare_comments.rb

This file was deleted.

2 changes: 0 additions & 2 deletions ext/priority_queue/CPriorityQueue/extconf.rb

This file was deleted.

2 changes: 2 additions & 0 deletions ext/priority_queue/extconf.rb
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
require 'mkmf'
create_makefile('priority_queue')
Loading

0 comments on commit 5a49cf6

Please sign in to comment.