Colby
A small wrapper and functions to make working with persistent, immutable data structures easy.
Testing
rspec .
Installation
gem install colby
or
gem build ./colby.gemspec
gem install --local ./colby-x.x.x.gem
Usage
require 'colby'
include Colby::Core
# Now you can build hash_map, vec, list, or set
# Also, you have clojure-like functions such as assoc, get, conj, has_key
# check the spec to see examples