forked from httprb/http
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGemfile
41 lines (34 loc) · 814 Bytes
/
Gemfile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
source "https://rubygems.org"
gem "jruby-openssl" if defined? JRUBY_VERSION
gem "rake"
gem "rack-cache", "~> 1.2"
group :development do
gem "celluloid-io"
gem "guard"
gem "guard-rspec", :require => false
gem "nokogiri", :require => false
gem "pry"
platforms :ruby_19, :ruby_20 do
gem "pry-debugger"
gem "pry-stack_explorer"
end
end
group :test do
gem "backports"
gem "coveralls"
gem "simplecov", ">= 0.9"
gem "json", ">= 1.8.1"
gem "mime-types", "~> 1.25", :platforms => [:jruby]
gem "rest-client", "~> 1.6.0", :platforms => [:jruby]
gem "rspec", "~> 3.0"
gem "rspec-its"
gem "rubocop"
gem "yardstick"
gem "certificate_authority"
end
group :doc do
gem "redcarpet"
gem "yard"
end
# Specify your gem's dependencies in http.gemspec
gemspec