Skip to content

Commit ddb74c4

Browse files
author
Nicolas Lupien
committed
Removed uncompatible gem install flag
The latest version of gem removed the flag "includes-dependencies". It's now the default behavior in gem 2.0.0
1 parent ce10a05 commit ddb74c4

File tree

1 file changed

+2
-2
lines changed
  • lib/puppet/provider/rvm_gem

1 file changed

+2
-2
lines changed

lib/puppet/provider/rvm_gem/gem.rb

+2-2
Original file line numberDiff line numberDiff line change
@@ -72,8 +72,8 @@ def self.gemsplit(desc)
7272
def install(useversion = true)
7373
command = gembinary + ['install']
7474
command << "-v" << resource[:ensure] if (! resource[:ensure].is_a? Symbol) and useversion
75-
# Always include dependencies
76-
command << "--include-dependencies"
75+
# Dependencies are now installed by default
76+
# command << "--include-dependencies"
7777

7878
if source = resource[:source]
7979
begin

0 commit comments

Comments
 (0)