From b6788d80d5265c727b9b51873b64ab8c6d0bdbb6 Mon Sep 17 00:00:00 2001 From: Clinton Wolfe Date: Tue, 23 Jan 2018 10:17:16 -0500 Subject: [PATCH] Remove highline and nokogiri, and group test gems in Gemfile (#203) Signed-off-by: Clinton Wolfe --- Gemfile | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/Gemfile b/Gemfile index 8610273f..6037f6b2 100644 --- a/Gemfile +++ b/Gemfile @@ -1,13 +1,14 @@ source 'https://rubygems.org' -gem 'rake' gem 'inspec', '~> 1' -gem 'rubocop', '~> 0.51.0' -gem 'highline', '~> 1.6.0' gem 'aws-sdk', '~> 2' -gem 'nokogiri' -gem 'minitest', '5.10.1' group :tools do gem 'github_changelog_generator', '~> 1.12.0' end + +group :test do + gem 'rake' + gem 'rubocop', '~> 0.51.0' + gem 'minitest', '5.10.1' +end \ No newline at end of file