We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8a69984 commit 0c6c56fCopy full SHA for 0c6c56f
Gemfile
@@ -1,7 +1,18 @@
1
# encoding: utf-8
2
+
3
source 'https://rubygems.org'
4
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
11
gem 'rake'
-gem 'serverspec', '~> 2.3.0'
-gem 'rubocop', '~> 0.27'
12
+gem 'inspec', '~> 0'
13
+gem 'rubocop', '~> 0.36.0'
14
gem 'highline', '~> 1.6.0'
15
16
+group :tools do
17
+ gem 'github_changelog_generator', '~> 1.12.0'
18
0 commit comments