forked from aws/aws-sdk-ruby
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Gemfile
47 lines (35 loc) · 875 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
gem 'oj' unless ENV['PURE_RUBY']
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', '~> 3.0.0'
gem 'cucumber'
gem 'webmock'
gem 'simplecov', require: false
gem 'coveralls', require: false
gem 'json-schema'
gem 'rest-client' # used for presigned-post integration test
end
group :docs do
gem 'yard', :git => 'https://github.com/trevorrowe/yard.git', branch: 'frameless'
gem 'yard-sitemap', '~> 1.0'
gem 'rdiscount'
gem 'nanoc' # guide
# guide - syntax highlight
gem 'nokogiri'
gem 'coderay'
# guide - local preview
gem 'adsf' # a dead simple fileserver
gem 'guard-nanoc'
end
group :release do
gem 'octokit'
end
group :repl do
gem 'pry'
end