Pathname.ensure_writable
Yields after chmoding (if necessary), once block is complete restores permissions.
This commit is contained in:
parent
55bd25ff4c
commit
123f7cd00e
@ -238,6 +238,16 @@ class Pathname
|
|||||||
def / that
|
def / that
|
||||||
join that.to_s
|
join that.to_s
|
||||||
end
|
end
|
||||||
|
|
||||||
|
def ensure_writable
|
||||||
|
saved_perms = unless writable?
|
||||||
|
chmod 0644
|
||||||
|
stat.mode
|
||||||
|
end
|
||||||
|
yield
|
||||||
|
ensure
|
||||||
|
chmod saved_perms if saved_perms
|
||||||
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
# sets $n and $d so you can observe creation of stuff
|
# sets $n and $d so you can observe creation of stuff
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user