mirror of
https://github.com/ruby/ruby.git
synced 2025-08-25 14:05:02 +02:00

* lib/bundler, spec/bundler: Merge bundler-1.16.0. * common.mk: rspec examples of bundler-1.16.0 needs require option. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@60603 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
18 lines
339 B
Ruby
18 lines
339 B
Ruby
# frozen_string_literal: true
|
|
|
|
module Spec
|
|
module Sudo
|
|
def self.present?
|
|
@which_sudo ||= Bundler.which("sudo")
|
|
end
|
|
|
|
def sudo(cmd)
|
|
raise "sudo not present" unless Sudo.present?
|
|
sys_exec("sudo #{cmd}")
|
|
end
|
|
|
|
def chown_system_gems_to_root
|
|
sudo "chown -R root #{system_gem_path}"
|
|
end
|
|
end
|
|
end
|