Codebase list ruby-ftw / 723b677d-04cb-4881-bd24-052d0e23d7f7/upstream Gemfile
723b677d-04cb-4881-bd24-052d0e23d7f7/upstream

Tree @723b677d-04cb-4881-bd24-052d0e23d7f7/upstream (Download .tar.gz)

Gemfile @723b677d-04cb-4881-bd24-052d0e23d7f7/upstreamraw · 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