forked from aws/aws-sdk-ruby
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Gemfile
67 lines (56 loc) · 1.49 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
61
62
63
64
65
66
67
source 'https://rubygems.org'
gem 'rake', require: false
gem 'jmespath'
group :test do
gem 'rspec'
if RUBY_VERSION == '1.9.3'
# webmock depends on addressable, but the latest version of addressable
# has a dependency on ~> 2.0 of public_suffix which is not compatible
# with Ruby 1.9.3
gem 'addressable', '2.4.0'
# webmock dropped support for Ruby 1.9.3 after version 2.2.0
gem 'webmock', '2.2.0'
# oj drop support for Ruby under 2.0 since 3.3.5
gem 'oj', '<= 3.3.4'
# cucumber drop support for Ruby under 2.0 after 3.0.0
gem 'cucumber', '3.0.0'
else
gem 'addressable'
gem 'webmock'
gem 'cucumber'
end
gem 'json-schema'
gem 'multipart-post'
# faster xml libraries
gem 'libxml-ruby' unless ENV['PURE_RUBY']
gem 'nokogiri', '1.6.8.1' unless ENV['PURE_RUBY']
gem 'oga'
# faster json libraries
if !ENV['PURE_RUBY']
gem 'json', '1.8.3' if RUBY_VERSION == '1.9.3'
if ENV['OLD_OJ']
gem 'oj', '1.3.0'
else
gem 'oj' unless RUBY_VERSION == '1.9.3'
end
# Ox after 2.4.12 has a change in default behavior. Test both.
if ENV['OLD_OX']
gem 'ox', '2.4.12'
else
gem 'ox'
end
end
end
group :build do
# using this to fix poorly formatted HTML in API docs
gem 'kramdown', '1.14.0' # pinned to support Ruby 1.9.3
gem 'mustache', '0.99.8' # pinned to support Ruby 1.9.3
end
group :docs do
gem 'yard', '0.9.5'
gem 'yard-sitemap', '~> 1.0'
gem 'rdiscount'
end
group :repl do
gem 'pry'
end