summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authornobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2016-06-27 07:55:17 +0000
committernobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2016-06-27 07:55:17 +0000
commit10fcca8f153e7d5265bed2a8b42e945f2be7819b ()
tree737f2309dda93c8a3e895b01feb25ba0e9c349e9
parent71db7bd3d3c87a5390a54a409de06d672ca32b98 (diff)
FileUtils#install: owner/group options
* lib/fileutils.rb (FileUtils#install): add owner and group options. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@55512 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-rw-r--r--ChangeLog5
-rw-r--r--lib/fileutils.rb16
-rw-r--r--lib/un.rb6
-rw-r--r--test/fileutils/test_fileutils.rb16
4 files changed, 40 insertions, 3 deletions
@@ -1,3 +1,8 @@
Mon Jun 27 08:56:55 2016 Nobuyoshi Nakada <[email protected]>
* compile.c (ADD_TRACE): ignore trace instruction on non-positive
@@ -754,9 +754,20 @@ module FileUtils
# FileUtils.install 'ruby', '/usr/local/bin/ruby', :mode => 0755, :verbose => true
# FileUtils.install 'lib.rb', '/usr/local/lib/ruby/site_ruby', :verbose => true
#
- def install(src, dest, mode: nil, preserve: nil, noop: nil, verbose: nil)
- fu_output_message "install -c#{preserve && ' -p'}#{mode ? (' -m 0%o' % mode) : ''} #{[src,dest].flatten.join ' '}" if verbose
return if noop
fu_each_src_dest(src, dest) do |s, d|
st = File.stat(s)
unless File.exist?(d) and compare_file(s, d)
@@ -764,6 +775,7 @@ module FileUtils
copy_file s, d
File.utime st.atime, st.mtime, d if preserve
File.chmod mode, d if mode
end
end
end
@@ -189,13 +189,17 @@ end
# -p apply access/modification times of SOURCE files to
# corresponding destination files
# -m set permission mode (as in chmod), instead of 0755
# -v verbose
#
def install
- setup("pm:") do |argv, options|
options[:mode] = (mode = options.delete :m) ? mode.oct : 0755
options[:preserve] = true if options.delete :p
dest = argv.pop
argv = argv[0] if argv.size == 1
FileUtils.install argv, dest, options
@@ -968,6 +968,22 @@ class TestFileUtils < Test::Unit::TestCase
}
end
def test_chmod
check_singleton :chmod