From b31c9d0048aab0cf0befef815d06d6eda198743b Mon Sep 17 00:00:00 2001 From: Bill Niblock Date: Sat, 28 Oct 2017 22:07:00 -0400 Subject: [PATCH] Organize Gemfile --- Gemfile | 27 ++++++++++++++++++--------- 1 file changed, 18 insertions(+), 9 deletions(-) diff --git a/Gemfile b/Gemfile index f52d7ba..b8028e2 100644 --- a/Gemfile +++ b/Gemfile @@ -1,12 +1,21 @@ # frozen_string_literal: true -source "https://rubygems.org" +source 'https://rubygems.org' -# Documentation -gem "rdoc" -gem "redcarpet" -gem "thor" -gem "yard" -gem "yard-ghpages" +ruby '2.4.2' -# Testing -gem "rubocop" +gem 'thor' + +group :documentation do + gem 'rdoc' + gem 'redcarpet' + gem 'yard' + gem 'yard-ghpages' +end + +group :test do + gem 'rubocop' +end + +group :web do + gem 'rack' +end