mirror of
https://github.com/dev-sec/linux-baseline
synced 2024-11-22 19:23:02 +00:00
b4f6b912a9
the gem chef-config is contained in both repos rubygems.org and cinc-project. This seems to confuse bundler when installing gems. Signed-off-by: Martin Schurz <Martin.Schurz@t-systems.com>
18 lines
296 B
Ruby
18 lines
296 B
Ruby
# frozen_string_literal: true
|
|
|
|
source 'https://rubygems.org'
|
|
|
|
gem 'highline'
|
|
gem 'rack'
|
|
gem 'rake'
|
|
gem 'rubocop'
|
|
|
|
group :tools do
|
|
gem 'github_changelog_generator'
|
|
gem 'pry-coolline'
|
|
end
|
|
|
|
source 'https://packagecloud.io/cinc-project/stable' do
|
|
gem 'chef-config'
|
|
gem 'cinc-auditor-bin'
|
|
end
|