forked from aws/aws-sdk-ruby
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Gemfile
60 lines (48 loc) · 1 KB
/
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
52
53
54
55
56
57
58
59
60
# frozen_string_literal: true
source 'https://rubygems.org'
gem 'rake', require: false
# SDK feature dependencies
gem 'aws-crt' if ENV['CRT']
gem 'http-2'
gem 'jmespath'
# json and xml parsers
gem 'json'
gem 'nokogiri', '>= 1.6.8.1'
gem 'oga'
gem 'rexml'
# These json and xml parsers do not have java gems
unless defined?(JRUBY_VERSION)
gem 'libxml-ruby'
gem 'oj'
gem 'ox'
end
group :test do
gem 'addressable'
gem 'cucumber'
gem 'webmock'
gem 'multipart-post'
gem 'rspec'
end
group :build do
gem 'kramdown'
gem 'mustache'
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 :repl do
gem 'pry'
end
group :development do
gem 'rubocop', '1.28.0'
end
group :benchmark do
gem 'benchmark'
gem 'memory_profiler'
end