mirror of
https://github.com/inspec/inspec
synced 2024-12-24 03:53:15 +00:00
b1254926cd
Some object methods have been deprecated in v0.11.0 of the arm sdks. This commit fixes the get_resources method by using the new resources object instance method. We are also updating the Gemfile accordingly. Signed-off-by: sanabriad <sanabria.d@gmail.com>
19 lines
349 B
Ruby
19 lines
349 B
Ruby
source 'https://rubygems.org'
|
|
|
|
gem 'inifile'
|
|
gem 'azure_mgmt_compute', '~> 0.11.0'
|
|
gem 'azure_mgmt_resources', '~> 0.11.0'
|
|
gem 'azure_mgmt_network', '~> 0.11.0'
|
|
gem 'bundle'
|
|
|
|
group :development do
|
|
gem 'rake'
|
|
gem 'rubocop'
|
|
gem 'github_changelog_generator'
|
|
gem 'pry-coolline'
|
|
gem 'passgen'
|
|
end
|
|
|
|
group :inspec do
|
|
gem 'inspec', '~> 1.1'
|
|
end
|