-
Notifications
You must be signed in to change notification settings - Fork 1.2k
Expand file tree
/
Copy pathGemfile
More file actions
79 lines (66 loc) · 1.53 KB
/
Gemfile
File metadata and controls
79 lines (66 loc) · 1.53 KB
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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
# frozen_string_literal: true
source 'https://rubygems.org'
gem 'rake', require: false
gem 'aws-crt' if ENV['CRT']
gem 'base64'
gem 'bigdecimal'
gem 'csv'
gem 'http-2'
if defined?(JRUBY_VERSION)
gem 'irb', '< 1.17.0'
else
gem 'irb'
end
gem 'jmespath'
gem 'jruby-openssl' if defined?(JRUBY_VERSION)
gem 'rdoc'
# protocol parsers
# Pinning to 2.7.6 to avoid Encoding::InvalidByteSequenceError in recent gem versions
gem 'json', '2.7.6' # due to load_file support, see: https://github.com/ruby/json/issues/696
gem 'nokogiri'
gem 'oga'
gem 'rexml'
gem 'ruby-ll', '2.1.3' # temporary
unless defined?(JRUBY_VERSION)
gem 'libxml-ruby'
gem 'oj'
gem 'ox'
end
group :benchmark do
gem 'memory_profiler'
# required for uploading report/putting metrics
gem 'aws-sdk-cloudwatch', require: false
gem 'aws-sdk-lambda', require: false
gem 'aws-sdk-s3', require: false
end
group :build do
gem 'kramdown'
gem 'mustache'
end
group :development do
gem 'byebug', platforms: :ruby
gem 'rubocop', '>= 1.75.0'
end
group :docs do
gem 'rdiscount', platforms: :ruby
# When updating yard, override app.js from upstream to:
# doc-src/templates/default/fulldoc/html/js/app.js
# and add patch from PR https://github.com/lsegal/yard/pull/1399
# to support jQuery 3.6.0+
gem 'yard', '>= 0.9.26'
gem 'yard-sitemap', '~> 1.0'
end
group :rbs do
gem 'rbs', platforms: :ruby
end
group :repl do
gem 'pry'
end
group :test do
gem 'addressable'
gem 'cucumber'
gem 'multipart-post'
gem 'opentelemetry-sdk'
gem 'rspec'
gem 'webmock'
end