Skip to content

Commit

Permalink
Initial version RBTreeHash in avl_tree gem
Browse files Browse the repository at this point in the history
TODO
 - optimize
 - make more easier to read
  • Loading branch information
Hiroshi Nakamura committed Mar 16, 2012
1 parent 41b04d3 commit c7129e9
Show file tree
Hide file tree
Showing 8 changed files with 1,236 additions and 0 deletions.
11 changes: 11 additions & 0 deletions Gemfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
source "http://rubygems.org"

group :development do
gem 'rake'
end

group :test do
gem 'simplecov', :require => false
end

gemspec
14 changes: 14 additions & 0 deletions Rakefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
require 'rake'
require 'rake/testtask'
require 'rubygems/package_task'

task :default => :test

require 'bundler'
Bundler::GemHelper.install_tasks

Rake::TestTask.new('test') do |test|
test.libs << 'lib'
test.verbose = true
test.test_files = Dir.glob('test/test_*.rb')
end
Loading

0 comments on commit c7129e9

Please sign in to comment.