forked from aws/aws-sdk-ruby
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Gemfile
47 lines (38 loc) · 955 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
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'
gem 'simplecov', require: false
gem 'coveralls', require: false if RUBY_VERSION > '1.9.3'
gem 'json-schema'
# used in the cucumber feature tests to test
# the presigned-post utility.
gem 'rest-client' if RUBY_VERSION > '1.9.3'
end
group :docs do
gem 'yard', :git => 'https://github.com/trevorrowe/yard.git', branch: 'frameless'
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