From 4585d2a35cace1e92ed3238ec81c82d17a9e3633 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Patrick=20M=C3=BCnch?= Date: Mon, 25 Jul 2016 20:17:57 +0200 Subject: [PATCH] update Gemfile MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Patrick Münch --- Gemfile | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/Gemfile b/Gemfile index 5ba8a9b..587005b 100644 --- a/Gemfile +++ b/Gemfile @@ -2,17 +2,17 @@ source 'https://rubygems.org' +# pin dependency for Ruby 1.9.3 since bundler is not +# detecting that net-ssh 3 does not work with 1.9.3 if Gem::Version.new(RUBY_VERSION) <= Gem::Version.new('1.9.3') gem 'net-ssh', '~> 2.9' end gem 'rake' -gem 'inspec', '~> 0.9' -gem 'rubocop', '~> 0.23' +gem 'inspec', '~> 0' +gem 'rubocop', '~> 0.36.0' gem 'highline', '~> 1.6.0' -# pin dependency for Ruby 1.9.3 since bundler is not -# detecting that net-ssh 3 does not work with 1.9.3 -if Gem::Version.new(RUBY_VERSION) <= Gem::Version.new('1.9.3') - gem 'net-ssh', '~> 2.9' +group :tools do + gem 'github_changelog_generator', '~> 1.12.0' end