forked from inspec/inspec-aws
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathGemfile
More file actions
28 lines (23 loc) · 820 Bytes
/
Gemfile
File metadata and controls
28 lines (23 loc) · 820 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
source 'https://rubygems.org'
gem 'bundle'
# Note that 'aws-sdk' pulls in a large number of libraries, choose explicitly those to include instead
# gem 'aws-sdk', '~> 3'
#
# See service list here: https://docs.aws.amazon.com/sdk-for-ruby/v3/api/index.html
#
# See train-aws for a list of dependencies already available: https://github.com/inspec/train-aws/blob/master/train-aws.gemspec
# Note if the gem required is commented out, please raise a PR against the train-aws repo first
# In the mean time the gem can be added here for local development
# Use Latest Inspec
gem 'inspec-bin'
gem 'rubocop', '~> 1.25.1', require: false
group :test do
gem "chefstyle", "~> 2.2.2"
gem "simplecov", "~> 0.21"
gem "simplecov_json_formatter"
end
group :development do
gem 'rake'
gem 'minitest'
gem 'pry-byebug'
end