Skip to content

Commit 4b3af5e

Browse files
committed
Housekeeping
1 parent 50395cb commit 4b3af5e

File tree

3 files changed

+27
-10
lines changed

3 files changed

+27
-10
lines changed

.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -7,3 +7,4 @@ Makefile
77
*.gemspec
88
doc
99
pkg
10+
*#

Manifest

+18-2
Original file line numberDiff line numberDiff line change
@@ -1,29 +1,45 @@
1+
algorithms.gemspec
12
benchmark.rb
3+
benchmarks/rbench/column.rb
4+
benchmarks/rbench/group.rb
5+
benchmarks/rbench/report.rb
6+
benchmarks/rbench/runner.rb
7+
benchmarks/rbench/summary.rb
8+
benchmarks/rbench.rb
9+
benchmarks/sorts.rb
10+
ext/containers/bst/bst.c
11+
ext/containers/bst/extconf.rb
212
ext/containers/deque/deque.c
313
ext/containers/deque/extconf.rb
414
ext/containers/tree_map/extconf.rb
5-
ext/containers/tree_map/Rakefile
615
ext/containers/tree_map/rbtree.c
716
History.txt
17+
lib/algorithms/search.rb
18+
lib/algorithms/sort.rb
819
lib/algorithms.rb
920
lib/containers/deque.rb
1021
lib/containers/heap.rb
22+
lib/containers/kd_tree.rb
1123
lib/containers/priority_queue.rb
1224
lib/containers/queue.rb
1325
lib/containers/rb_tree_map.rb
1426
lib/containers/splay_tree_map.rb
1527
lib/containers/stack.rb
1628
lib/containers/suffix_array.rb
1729
lib/containers/trie.rb
18-
Makefile
30+
lib/graphs/graph.rb
1931
Manifest
2032
Rakefile
2133
README
34+
spec/bst_spec.rb
2235
spec/deque_spec.rb
2336
spec/heap_spec.rb
37+
spec/kd_tree_spec.rb
2438
spec/priority_queue_spec.rb
2539
spec/queue_spec.rb
2640
spec/rb_tree_map_spec.rb
41+
spec/search_spec.rb
42+
spec/sort_spec.rb
2743
spec/splay_tree_map_spec.rb
2844
spec/stack_spec.rb
2945
spec/suffix_array_spec.rb

Rakefile

+8-8
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,19 @@
11
require 'rubygems'
22
require 'echoe'
3-
3+
44
Echoe.new('algorithms') do |p|
5-
p.author = 'Kanwei Li'
6-
p.email = '[email protected]'
7-
p.summary = 'A library of algorithms and containers.'
8-
p.url = 'http://rubyforge.org/projects/algorithms/'
9-
p.version = "0.0.1"
5+
p.author = 'Kanwei Li'
6+
p.email = '[email protected]'
7+
p.summary = 'A library of algorithms and containers.'
8+
p.url = 'http://rubyforge.org/projects/algorithms/'
9+
p.version = "0.1.0"
1010
p.runtime_dependencies = []
1111
end
1212

1313
task :default => :spec
1414

15-
task :spec => :compile do
16-
sh "spec -c spec/"
15+
task :spec do
16+
sh "spec spec/*.rb --color"
1717
end
1818

1919
task :push do

0 commit comments

Comments
 (0)