forked from httprb/http
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Gemfile
50 lines (36 loc) · 906 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
42
43
44
45
46
47
48
49
50
# frozen_string_literal: true
source "https://rubygems.org"
ruby RUBY_VERSION
gem "rake"
# Ruby 3.0 does not ship it anymore.
# TODO: We should probably refactor specs to avoid need for it.
gem "webrick"
group :development do
gem "guard-rspec", :require => false
gem "nokogiri", :require => false
gem "pry", :require => false
# RSpec formatter
gem "fuubar", :require => false
platform :mri do
gem "pry-byebug"
end
end
group :test do
gem "certificate_authority", "~> 1.0", :require => false
gem "backports"
gem "rubocop", "~> 1.21"
gem "rubocop-performance"
gem "rubocop-rake"
gem "rubocop-rspec"
gem "simplecov", :require => false
gem "simplecov-lcov", :require => false
gem "rspec", "~> 3.10"
gem "rspec-its"
gem "yardstick"
end
group :doc do
gem "kramdown"
gem "yard"
end
# Specify your gem's dependencies in http.gemspec
gemspec