-
Notifications
You must be signed in to change notification settings - Fork 321
/
Gemfile
51 lines (37 loc) · 946 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
51
# 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.61.0"
gem "rubocop-performance", "~> 1.19.1"
gem "rubocop-rake", "~> 0.6.0"
gem "rubocop-rspec", "~> 2.24.1"
gem "simplecov", require: false
gem "simplecov-lcov", require: false
gem "rspec", "~> 3.10"
gem "rspec-its"
gem "rspec-memory"
gem "yardstick"
end
group :doc do
gem "kramdown"
gem "yard"
end
# Specify your gem's dependencies in http.gemspec
gemspec