From 14524776bba50e1c2a3b692dd0b74b04e62f6a1c Mon Sep 17 00:00:00 2001 From: Adam Gibbins Date: Thu, 5 Mar 2020 10:13:00 +0000 Subject: [PATCH] Stop rubocop being a dev dependency This is so we can run rubocop within the docker image, for our pre-commit. --- Gemfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Gemfile b/Gemfile index cfe61d2d..7e9755e7 100644 --- a/Gemfile +++ b/Gemfile @@ -4,12 +4,12 @@ gem 'collimator', '0.0.3' gem 'mcollective-client', '2.8.2' gem 'puppet', '3.7.5' gem 'rspec', '3.3.0' # used by stacks test command +gem 'rubocop', '0.32.1' group :development do gem 'ci_reporter_rspec', '1.0.0' gem 'pry' gem 'pry-byebug' gem 'rake', '10.1.0' - gem 'rubocop', '0.32.1' gem 'syck' if RUBY_VERSION.split('.').first.to_i > 1 end