Skip to content

Commit 0c6c56f

Browse files
committed
update gemfile
Signed-off-by: Patrick Münch <patrick.muench1111@gmail.com>
1 parent 8a69984 commit 0c6c56f

File tree

1 file changed

+13
-2
lines changed

1 file changed

+13
-2
lines changed

Gemfile

Lines changed: 13 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,18 @@
11
# encoding: utf-8
2+
23
source 'https://rubygems.org'
34

5+
# pin dependency for Ruby 1.9.3 since bundler is not
6+
# detecting that net-ssh 3 does not work with 1.9.3
7+
if Gem::Version.new(RUBY_VERSION) <= Gem::Version.new('1.9.3')
8+
gem 'net-ssh', '~> 2.9'
9+
end
10+
411
gem 'rake'
5-
gem 'serverspec', '~> 2.3.0'
6-
gem 'rubocop', '~> 0.27'
12+
gem 'inspec', '~> 0'
13+
gem 'rubocop', '~> 0.36.0'
714
gem 'highline', '~> 1.6.0'
15+
16+
group :tools do
17+
gem 'github_changelog_generator', '~> 1.12.0'
18+
end

0 commit comments

Comments
 (0)