nahi / avl_tree

AVL tree and Red-black tree in Ruby
BSD 2-Clause "Simplified" License
66 stars 17 forks source link

Add missing runtime dependency on atomic to gemspec #8

Closed bkutil closed 10 years ago

bkutil commented 10 years ago

Avl_tree's gemspec is missing a runtime dependency on atomic gem, so when installed via bundler, a LoadError is raised on require 'red_black_tree':

 irb(main):001:0> require 'red_black_tree'
 LoadError: cannot load such file -- atomic

This patch adds the missing dependency.

buildhive commented 10 years ago

Hiroshi Nakamura » avl_tree #27 SUCCESS This pull request looks good (what's this?)

nahi commented 10 years ago

Good catch. Thank you!