### ### Sources ### # Main Ruby Gems site source "http://rubygems.org" ### ### Core Gems. These are required in _all_ environments (additional environments ### follow). ### # Additional data structures gem "algorithms" gem "rubytree", "~> 0.8.1" # Log Library gem "log4r", "~> 1.1.9" # GUID library gem "uuidtools" # Gem required for linking to the Redis server gem "hiredis", "~> 0.3.1" gem "em-synchrony" gem "redis", "~> 2.2.0", :require => ["redis/connection/synchrony", "redis"] # Command line parser gem "cli" gem "cri" # Simpler access to the OpenSSL library gem "gibberish" ### ### Development Gems. All _additional_ gems required by development (as opposed to ### production environments). If it is required at run-time, it ### belongs above. group :development do # Gem management tools gem "bundler", "~> 1.0.0" gem "jeweler", "~> 1.6.0" # Documentation Tools gem "yard", "~> 0.6.0" gem "vclog" # Testing Tools gem "minitest", ">= 0" gem "rcov", ">= 0" gem "riot" gem "reek", "~> 1.2.8" end