forked from aws/aws-sdk-ruby
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Gemfile
55 lines (43 loc) · 970 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
52
53
54
55
# frozen_string_literal: true
source 'https://rubygems.org'
gem 'rake', require: false
gem 'http-2'
gem 'jmespath'
gem 'aws-crt' if ENV['CRT']
# faster xml libraries
unless ENV['PURE_RUBY']
gem 'nokogiri', '>= 1.6.8.1'
gem 'oga'
unless defined?(JRUBY_VERSION)
gem 'libxml-ruby'
gem 'ox'
end
end
# faster json library
gem 'oj' unless ENV['PURE_RUBY'] && defined?(JRUBY_VERSION)
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', '0.81.0'
end