-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathGemfile
More file actions
47 lines (38 loc) · 824 Bytes
/
Gemfile
File metadata and controls
47 lines (38 loc) · 824 Bytes
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
# frozen_string_literal: true
source 'https://rubygems.org'
gem 'rake', require: false
gem 'rubocop'
gem 'smithy', path: 'gems/smithy'
gem 'smithy-cbor', path: 'gems/smithy-cbor'
gem 'smithy-client', path: 'gems/smithy-client'
gem 'smithy-json', path: 'gems/smithy-json'
# gem 'smithy-server', path: 'gems/smithy-server'
gem 'smithy-schema', path: 'gems/smithy-schema'
gem 'smithy-xml', path: 'gems/smithy-xml'
group :development do
gem 'byebug', platforms: :ruby
end
group :docs do
gem 'yard'
gem 'yard-sitemap', '~> 1.0'
end
group :json do
gem 'json'
gem 'oj'
end
group :rbs do
gem 'rbs', platforms: :ruby
gem 'steep', platforms: :ruby
end
group :test do
gem 'rspec'
gem 'simplecov'
gem 'webmock'
end
group :xml do
gem 'libxml-ruby'
gem 'nokogiri'
gem 'oga'
gem 'ox'
gem 'rexml'
end