Codebase list ruby-ftw / 52fc5698-886b-4465-b1d6-bc35a5bff065/upstream/0.0.44+git20190801.1.fcb1d9e Gemfile
52fc5698-886b-4465-b1d6-bc35a5bff065/upstream/0.0.44+git20190801.1.fcb1d9e

Tree @52fc5698-886b-4465-b1d6-bc35a5bff065/upstream/0.0.44+git20190801.1.fcb1d9e (Download .tar.gz)

Gemfile @52fc5698-886b-4465-b1d6-bc35a5bff065/upstream/0.0.44+git20190801.1.fcb1d9eraw · history · blame

source :rubygems

gem "json" # for json
gem "cabin", "0.4.4" # for logging
gem "http_parser.rb", "~> 0.6" # for http request/response parsing
gem "addressable", ">= 2.4"  # because stdlib URI is terrible
gem "backports", "2.6.2" # for hacking stuff in to ruby <1.9
gem "minitest" # for unit tests, latest of this is fine

group :testing do
  gem "simplecov"
  gem "yard"
  gem "insist"
  gem "rspec", "~>2"
  gem "stud"
  gem "awesome_print"
  gem "pry"
end

group :examples do
  gem "sinatra"
end