forked from aws/aws-sdk-ruby
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Gemfile
48 lines (40 loc) · 985 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
source 'https://rubygems.org'
gemspec path: 'aws-sdk-core'
gem 'rake', require: false
if !ENV['PURE_RUBY']
if ENV['OLD_OJ']
gem 'oj', '1.3.0'
else
gem 'oj'
end
end
gem 'json', '1.8.3' if RUBY_VERSION == '1.9.3'
gem 'ox' unless ENV['PURE_RUBY']
gem 'libxml-ruby' unless ENV['PURE_RUBY']
gem 'nokogiri' unless ENV['PURE_RUBY']
gem 'oga'
group :test do
gem 'rspec'
gem 'cucumber'
gem 'webmock'
# 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'
gem 'simplecov', require: false
gem 'coveralls', require: false if RUBY_VERSION > '1.9.3'
gem 'json-schema'
gem 'multipart-post'
end
group :docs do
gem 'yard', '0.9.5'
gem 'yard-sitemap', '~> 1.0'
gem 'rdiscount'
gem 'kramdown' # using this to fix poorly formatted HTML in API docs
end
group :release do
gem 'octokit'
end
group :repl do
gem 'pry'
end